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.

Results 1 to 5 of 5

How do I remove forum title from archive

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 ...

  1. #1
    Junior Member
    Join Date
    Dec 2005
    Posts
    2

    How do I remove forum title from archive

    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.

  2. #2
    Senior Member
    Real Name
    Holger
    Join Date
    Oct 2005
    Location
    Frankfurt / Germany
    Posts
    580

    Re: How do I remove forum title from archive

    search in ../archive/index.php
    Code:
        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";
    
    and remove it thats all

    regards

  3. #3
    Senior Member
    Real Name
    Keith Cohen
    Join Date
    Jul 2005
    Location
    Raleigh, NC USA
    Posts
    6,147

    Re: How do I remove forum title from archive

    I think this should do it:

    Open the index.php in your archive directory.

    Look for this:
    Code:
    $title = "$threadinfo[title] [$vbphrase[archive]] " . ($p > 1 ? ' - ' . construct_phrase($vbphrase['page_x'], $p) : '') . " - $title";
    
    Change to this:
    Code:
    $title = "$threadinfo[title] [$vbphrase[archive]] ";
    

    Then a few lines down look for this:
    Code:
    $title = "$foruminfo[title_clean] [$vbphrase[archive]]" . ($p > 1 ? ' - ' . construct_phrase($vbphrase['page_x'], $p) : '') . " - $title";
    
    Change to this:
    Code:
    $title = "$foruminfo[title_clean] [$vbphrase[archive]]";
    
    Last edited by Keith Cohen; 12-19-2005 at 02:19 PM.

  4. #4
    Junior Member
    Join Date
    Dec 2005
    Posts
    2

    Re: How do I remove forum title from archive

    Thank you ConqSoft

  5. #5
    Senior Member
    Real Name
    Keith Cohen
    Join Date
    Jul 2005
    Location
    Raleigh, NC USA
    Posts
    6,147

    Re: How do I remove forum title from archive

    I updated my post. You probably should leave the "[Site Map]" in the title. That's what the "[$vbphrase[archive]]" part does.

Similar Threads

  1. Forum Title
    By stroke in forum Bug Reporting
    Replies: 1
    Last Post: 04-01-2006, 02:40 PM
  2. Forum Subscriptions
    By Keith Cohen in forum Bug Reporting
    Replies: 7
    Last Post: 04-01-2006, 04:08 AM