is there a way to remove my forum title from being displayed in the post title on every post. Can't seem to figure out how to remove it.
example:
I just want <title> My new post</title>
not:
<title> My new post - the name of my forum</title>
This is a discussion on remove forum title from thread title within the General Discussion forums, part of the vBulletin SEO Discussion category; is there a way to remove my forum title from being displayed in the post title on every post. Can't ...
is there a way to remove my forum title from being displayed in the post title on every post. Can't seem to figure out how to remove it.
example:
I just want <title> My new post</title>
not:
<title> My new post - the name of my forum</title>
Last edited by mindhunter77; 06-07-2008 at 04:45 PM. Reason: spelling of course
vB automatically tacks on what you put for the site name in vB's options onto the URL.
to remove, edit template SHOWTHREAD
find
replace withPHP Code:<title>$thread[prefix_plain_html] $thread[title]<if condition="$pagenumber>1"> - <phrase 1="$pagenumber">$vbphrase[page_x]</phrase></if> - $vboptions[bbtitle]</title>
PHP Code:<title>$thread[prefix_plain_html] $thread[title]<if condition="$pagenumber>1"> - <phrase 1="$pagenumber">$vbphrase[page_x]</phrase></if></title>
basically, removing - $vboptions[bbtitle] from the title tag.
Just remember to make this change everytime you update vb to the next version (and revert the template)