How do I remove forum title part ( - vBulletin SEO Forums) from <title> </title> of the archive.
http://www.vbseo.com/sitemap/f-20.html
Step by Step on how to remove it, please.![]()
vBulletin 4, the most powerful community software + vBSEO 3.5, the ultimate SEO solution = Your ultimate platform for 2010 and beyond. Click below to learn more.
This is a discussion on How do I remove forum title from archive within the Template Modifications forums, part of the vBulletin SEO Discussion category; How do I remove forum title part ( - vBulletin SEO Forums) from <title> </title> of the archive. http://www.vbseo.com/sitemap/f-20.html Step ...
How do I remove forum title part ( - vBulletin SEO Forums) from <title> </title> of the archive.
http://www.vbseo.com/sitemap/f-20.html
Step by Step on how to remove it, please.![]()
search in ../archive/index.php
and remove it thats allCode:echo "<p class=\"largefont\">$vbphrase[view_full_version] : <a href=\"" . $vbulletin->options['bburl'] . "/forumdisplay.php?f=$foruminfo[forumid]\">$foruminfo[title_clean]</a></p>\n<hr />\n";
regards
I think this should do it:
Open the index.php in your archive directory.
Look for this:
Change to this:Code:$title = "$threadinfo[title] [$vbphrase[archive]] " . ($p > 1 ? ' - ' . construct_phrase($vbphrase['page_x'], $p) : '') . " - $title";
Code:$title = "$threadinfo[title] [$vbphrase[archive]] ";
Then a few lines down look for this:
Change to this:Code:$title = "$foruminfo[title_clean] [$vbphrase[archive]]" . ($p > 1 ? ' - ' . construct_phrase($vbphrase['page_x'], $p) : '') . " - $title";
Code:$title = "$foruminfo[title_clean] [$vbphrase[archive]]";
Last edited by Keith Cohen; 12-19-2005 at 02:19 PM.
Thank you ConqSoft![]()
I updated my post. You probably should leave the "[Site Map]" in the title. That's what the "[$vbphrase[archive]]" part does.