Go Back   vBulletin Setup > Traffic and Revenue > Search Engine Optimization

Reply
 
LinkBack Thread Tools Display Modes
Old 09-13-2010, 04:29 AM   #61
Lurker
Feedback Score: 0 reviews
 
Join Date: Sep 2010
Posts: 3
eraledit
Re: How to SEO vBulletin without VBSEO

very happy to come here!!
eraledit is offline   Reply With Quote

Advertisement [Remove Advertisement]

Old 09-13-2010, 08:20 AM   #62
entrepreneur
Feedback Score: 0 reviews
 
Join Date: Sep 2010
Posts: 2
deniborin
Re: How to SEO vBulletin without VBSEO

I am glad to read your post, because this is useful for me
deniborin is offline   Reply With Quote
Old 11-08-2011, 05:08 AM   #63
Rookie
Feedback Score: 0 reviews
 
too_cool_3's Avatar
 
Join Date: Oct 2007
Location: Ontario
Posts: 17
too_cool_3
Send a message via MSN to too_cool_3
Has anyone made an updated to the first post to work with vB 4.1.7?

I tried doing some of these but the code is different, they no longer use the '$headinclude' line in the code.
__________________
TBMOTORING

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
too_cool_3 is offline   Reply With Quote
Old 11-09-2011, 03:53 AM   #64
Rookie
Feedback Score: 0 reviews
 
too_cool_3's Avatar
 
Join Date: Oct 2007
Location: Ontario
Posts: 17
too_cool_3
Send a message via MSN to too_cool_3
I was able to follow Step 1 (Remove Powered By Vbulletin tag) without issues.

-------------------------------------

In Step 2 (Title and description changes) it says to remove:

Code:
<if condition="$show['threadinfo']"> <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]" /> <else /> <if condition="$show['foruminfo']"> <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]" /> <else /> <meta name="keywords" content="$vboptions[keywords]" /> <meta name="description" content="$vboptions[description]" /> </if> </if>
from "headinclude" template. This removes the description and keywords from the headinclude.

In vB 4.1.7 I removed:

Code:
<vb:if condition="$show['threadinfo']">

<vb:elseif condition="$show['foruminfo']" />
        <meta name="keywords" content="{vb:raw foruminfo.title_clean}, {vb:raw vboptions.keywords}" />
        <meta name="description" content="<vb:if condition="$pagenumber > 1">{vb:rawphrase page_x, {vb:raw pagenumber}}-</vb:if>{vb:raw foruminfo.description_clean}" />
<vb:else />
        <meta name="keywords" content="{vb:raw vboptions.keywords}" />
        <meta name="description" content="{vb:raw vboptions.description}" />
</vb:if>
Does this essentially accomplish the same thing? As I noticed the code they are asking you to remove is similar, however it is not the same..

-------------------------------------

Next it states to look for:

Code:
$headinclude <title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title>
in the "forumhome" template. Move the $headinclude to below the title line, and insert this inbetween the two:

Code:
<title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase></title> <meta name="keywords" content="$vboptions[keywords]" /> <meta name="description" content="$vboptions[description]" /> $headinclude
Like this you will be using the description and keywords that you set under vBulletin options. However, in vB 4.1.7 I see:

Code:
{vb:raw headinclude}
    <title>{vb:raw vboptions.bbtitle}</title>
so I did this:

Code:
{vb:raw headinclude}
    <title>{vb:raw vboptions.bbtitle}</title>
        <meta name="keywords" content="$vboptions[keywords]" />
        <meta name="description" content="$vboptions[description]" />
Since there is no $headinclude in vB4 I left {vb:raw headinclude} at the top. Does this accomplish the same thing? Should I put the <meta name> stuff above {vb:raw headinclude}?

-------------------------------------

In "forumdisplay" template, it says to find:

Code:
$headinclude <title>$foruminfo[title_clean]<if condition="$pagenumber>1"> - <phrase 1="$pagenumber">$vbphrase[page_x]</phrase></if> - $vboptions[bbtitle]</title>
and change to:

Code:
<title>$foruminfo[title_clean]<if condition="$pagenumber>1"> - <phrase 1="$pagenumber">$vbphrase[page_x]</phrase></if> - $vboptions[bbtitle]</title> <meta name="keywords" content="$foruminfo[title] $vboptions[keywords]" /> <meta name="description" content="$foruminfo[description] $foruminfo[title]" />  $headinclude
There are 2 main changes here. First, your pulling keywords from the vBulletin options as with the forumhome, but your also adding the forum name to the keywords... Second, you have a description that is specific to each individual forum.

However, in vB 4.1.7 I see:

Code:
{vb:raw headinclude}
    <title>{vb:raw foruminfo.title_clean}<vb:if condition="$pagenumber > 1"> - {vb:rawphrase page_x, {vb:raw pagenumber}}</vb:if></title>
so I changed it to this:

Code:
{vb:raw headinclude}
    <title>{vb:raw foruminfo.title_clean}<vb:if condition="$pagenumber > 1"> - {vb:rawphrase page_x, {vb:raw pagenumber}}</vb:if></title>
        <meta name="keywords" content="$foruminfo[title] $vboptions[keywords]" />
        <meta name="description" content="$foruminfo[description] $foruminfo[title]" />
Again, I kept {vb:raw headinclude} at the top of the <meta name> stuff, instead of putting it at the bottom like they say to do with $headinclude. Is this accomplishing the same thing they intended in the older code?

-------------------------------------

Next, in "showthread" template, you find:

Code:
$headinclude <title>$thread[title]<if condition="$pagenumber>1"> - <phrase 1="$pagenumber">$vbphrase[page_x]</phrase></if> - $vboptions[bbtitle]</title>
and change it to this (changing the red text to something specific to your forum):

Code:
<title>$thread[title]<if condition="$pagenumber>1"> - <phrase 1="$pagenumber">$vbphrase[page_x]</phrase></if> - $foruminfo[title]</title> <meta name="description" content="$thread[title] is discussed *title of your forum* - $foruminfo[title]" /> <meta name="keywords" content="$thread[title] $vboptions[keywords]" /> $headinclude
The breakdown here is this - You are changing the title slightly by removing the site name, and replacing it with the name of the forum that the thread is in. You are adding the description which will now have: The Title of the thread + The red text + The Title of the forum the thread is in. Lots of keywords in your description now.

You are also adding the keywords that you placed in vBulletin Options, as well as the thread title which is also in the keywords now.

However, in vB 4.1.7 I see:

Code:
{vb:raw headinclude}
    <vb:if condition="$threadinfo['keywords']"><meta name="keywords" content="{vb:raw threadinfo.keywords}" /></vb:if>
    <meta name="description" content="{vb:raw thread.meta_description}" />

    <title>{vb:raw thread.prefix_plain_html} {vb:raw thread.title}<vb:if condition="$pagenumber > '1'"> - {vb:rawphrase page_x, {vb:raw pagenumber}}</vb:if></title>
This seems to already include <meta name> information. So I LEFT IT ALONE. How does what's already there in vB4 differ from what the older code instructed you to put in?

-------------------------------------

Next it instructs you to edit the template "showthread_showpost" which I could not find in vB 4.1.7 so I skipped it.

-------------------------------------

Lastly, you find "memberinfo" template and change:

Code:
$headinclude <title>$vboptions[bbtitle] - $vbphrase[view_profile]: $userinfo[username]</title
to:

Code:
<title>$userinfo[username]'s profile on $vboptions[bbtitle]</title> <meta name="keywords" content="$vboptions[keywords]" /> <meta name="description" content="$vboptions[description]" /> $headinclude
in vB 4.1.7 I found:

Code:
{vb:raw headinclude}
    <title>{vb:rawphrase view_profile}: {vb:raw prepared.username} - {vb:raw vboptions.bbtitle}</title>
and changed it to:

Code:
{vb:raw headinclude}
    <title>{vb:rawphrase view_profile}: {vb:raw prepared.username} - {vb:raw vboptions.bbtitle}</title>
        <meta name="keywords" content="$vboptions[keywords]" />
        <meta name="description" content="$vboptions[description]" />
Again, leaving {vb:raw headinclude} at the top of everything instead of moving it to the bottom like it states with $headinclude, since there is no $headinclude in vB4. Is what I did to the code in my template proper and valid for vB4?

-------------------------------------

That's as far as I've gone. I have not yet tried:

Step 3 (Remove forum titles from threads)

Step 4 (4)Adding H1 Tags to your Forum and Threads)

Step 5 (.htaccess to stop duplicate content)

Would these be a good idea?

Thanks for all your help. Any updates to these template codes or feedback is greatly appreciated!

-Marc

Andy, thank you. That goes without saying. That is my main goal, however any steps I can take along the way to help, I will try my best to use.
__________________
TBMOTORING

To view links or images in signatures your post count must be 0 or greater. You currently have 0 posts.
too_cool_3 is offline   Reply With Quote
Reply
vBulletin Setup > Traffic and Revenue > Search Engine Optimization


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
[vB News] vB4 Alpha Update Industry News vBulletin 0 10-30-2009 08:42 PM
Template suggestions Nikki Planning and Brainstorming 3 07-29-2007 09:37 PM
Alpha Testers Wanted for new vBulletin CMS James Goddard Software 4 02-09-2006 03:59 AM
Hi guys designworks Graphics and Design 2 11-05-2005 03:39 AM


All times are GMT +1. The time now is 09:34 AM.

Inactive Reminders By Mished.co.uk and FTP-Anime.com

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133