Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Add Search Engine Optimized Keywords & Description to each Forum Details »»
Add Search Engine Optimized Keywords & Description to each Forum
Version: 1.00, by Neutral Singh Neutral Singh is offline
Developer Last Online: Feb 2016 Show Printable Version Email this Page

Category: Administrative and Maintenance Tools - Version: 3.6.4 Rating:
Released: 10-11-2006 Last Update: Never Installs: 87
DB Changes Uses Plugins Template Edits
 
No support by the author.

Add Search Engine Optimized Keywords & Description to each Forum
Keywords: SEO, Search, Engine, Optimization, Meta-tag, Keywords, Description, Meta, Tags

Context:
This plugin gives you the facility to add some special keywords and descriptions to each forum thus allowing you to optimize each of your forum for its relevant keywords. No need to inform you that Search Engine Optimized (SEO) keywords and description for your forums is essential to enhance your presence in search engines as well as increase your web traffic for relevant keywords.

How this Works?
http://www.sikhphilosophy.net (View the source of each forum to realise the effect of this plugin on your forums.)

Recommended Usage:
Only Text based information should be added in keywords and description for maximum results.


Code:
*** Installation Instructions: (Also attached here)
*** -------------------------

1.     Installing the Plugin:

      Admincp > Plugin System > Manage Products
     Click: Import Product
      Browse: Your computer for downloaded file "product-forum_seo.xml" 
     After selecting the file, click Import button. 

**********************************************************************
2.     Only Template Edit: headinclude


     i)    Edit - headinclude Template:
        **********************************************************************

        Find:
        <meta name="keywords" content="$threadinfo[title], $vboptions[keywords]" />
        <meta name="description" content="<if condition="$pagenumber>1"><phrase 1="$pagenumber">$vbphrase[page_x]</phrase>-</if>$threadinfo[title] $foruminfo[title_clean]" />

        Replace With:
        <meta name="keywords" content="$foruminfo[forumkeywords],$threadinfo[title],$vboptions[keywords]" />
        <meta name="description" content="$foruminfo[forumdescription]. <if condition="$pagenumber>1"><phrase 1="$pagenumber">$vbphrase[page_x]</phrase>-</if>$threadinfo[title] $foruminfo[title_clean]" />
        
        **********************************************************************

        Find:
            <meta name="keywords" content="$foruminfo[title_clean], $vboptions[keywords]" />
        <meta name="description" content="<if condition="$pagenumber>1"><phrase 1="$pagenumber">$vbphrase[page_x]</phrase>-</if>$foruminfo[description_clean]" />

         Replace With:
        <meta name="keywords" content="$foruminfo[forumkeywords],$threadinfo[title],$vboptions[keywords]" />
        <meta name="description" content="$foruminfo[forumdescription]. <if condition="$pagenumber>1"><phrase 1="$pagenumber">$vbphrase[page_x]</phrase>-</if>$foruminfo[description_clean]" />
And you are done with modification !!

Now, simply Go to > Forum Manager > Edit a forum > Towards the bottom you will find the fields to enter your relevant keywords and description. You can play with the template modification to suit your needs.

Enjoy !!

If you installed this plugin, please click INSTALL for future support. :devious:

Thanks

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #12  
Old 10-16-2006, 09:17 AM
MadKad's Avatar
MadKad MadKad is offline
 
Join Date: Mar 2006
Location: UK
Posts: 208
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Neutral Singh
I am using vBSEO no idea about ZOINT SEO.
Please could you answer this, then I can download

Quote:
Originally Posted by MadKad
can I ask?

so if you have a good thread made on your forum you can go and give it its own keywords?

if this is the case, if you dont give them keywords do they stay standerd?

also sorry last one, do the members get access to adding keywords?
Thanks
Reply With Quote
  #13  
Old 10-17-2006, 06:49 PM
Gerakus's Avatar
Gerakus Gerakus is offline
 
Join Date: Apr 2005
Location: Illinois
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Neutral Singh
I am using vBSEO no idea about ZOINT SEO.
Does this hack works nice with vbseo?
Reply With Quote
  #14  
Old 10-17-2006, 09:21 PM
Snake's Avatar
Snake Snake is offline
 
Join Date: Mar 2005
Location: Cleveland, OH
Posts: 3,832
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh yes, I'm running it just great on my forums (I have even vBSEO installed too).
Reply With Quote
  #15  
Old 12-13-2006, 06:21 PM
mac27 mac27 is offline
 
Join Date: Jun 2006
Location: Kentucky
Posts: 299
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

any idea why when I use this it adds the main forum keywords to the ones I input per forum. Also it adds an extra comma at the end of the keywords I input. So when it adds the forums keywords it also adds the extra comma.

Example: word, word, word,, word, word
Reply With Quote
  #16  
Old 12-15-2006, 07:35 AM
Roverturbo Roverturbo is offline
 
Join Date: Dec 2005
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mac27 View Post
any idea why when I use this it adds the main forum keywords to the ones I input per forum. Also it adds an extra comma at the end of the keywords I input. So when it adds the forums keywords it also adds the extra comma.

Example: word, word, word,, word, word
I had the same problem and it was because the second lot of code he tells you to add in the template is wrong.

Code:
<meta name="keywords" content="$foruminfo[forumkeywords],$threadinfo[title],$vboptions[keywords]" />
<meta name="description" content="$foruminfo[forumdescription]. <if condition="$pagenumber>1"><phrase 1="$pagenumber">$vbphrase[page_x]</phrase>-</if>$foruminfo[description_clean]" />
->

Code:
<meta name="keywords" content="$foruminfo[forumkeywords],$foruminfo[title],$vboptions[keywords]" />
<meta name="description" content="$foruminfo[forumdescription]. <if condition="$pagenumber>1"><phrase 1="$pagenumber">$vbphrase[page_x]</phrase>-</if>$foruminfo[description_clean]" />
Hes was trying to display thread title when hes not in a thread.
Reply With Quote
  #17  
Old 12-15-2006, 04:27 PM
mac27 mac27 is offline
 
Join Date: Jun 2006
Location: Kentucky
Posts: 299
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

thanks for pointing that out. I didn't even notice that.
Reply With Quote
  #18  
Old 12-18-2006, 08:59 PM
Alfa1's Avatar
Alfa1 Alfa1 is offline
 
Join Date: Dec 2005
Location: Netherlands
Posts: 3,537
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by mac27 View Post
any idea why when I use this it adds the main forum keywords to the ones I input per forum.
Is there a way to get around this?
Reply With Quote
  #19  
Old 12-22-2006, 06:04 AM
Hornstar Hornstar is offline
 
Join Date: Jun 2005
Location: Australia
Posts: 2,469
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have vbseo installed as well, does vbseo do this currently or not, have not got around to checking all its features out.
Reply With Quote
  #20  
Old 01-05-2007, 06:47 PM
X-Rated X-Rated is offline
 
Join Date: Jan 2007
Posts: 7
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Good job..Thanks
Reply With Quote
  #21  
Old 02-11-2007, 05:56 PM
Chadi's Avatar
Chadi Chadi is offline
 
Join Date: May 2004
Location: USA
Posts: 2,043
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

What is the proper way of inserting the keywords? One word per line or separated by space, commas? If per line, I guess it would be one word only per line, no phrases?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 12:56 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.08402 seconds
  • Memory Usage 2,315KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_code
  • (5)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (2)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete