Activity Stream
48,167 MEMBERS
61059 ONLINE
besthostingforums On YouTube Subscribe to our Newsletter besthostingforums On Twitter besthostingforums On Facebook besthostingforums On facebook groups

Results 1 to 9 of 9
  1.     
    #1
    Member
    Website's:
    mygamegalaxy.com

    Default PhpBB3 SEO Title versions:(3.4-3.5-3.6)

    Description: This mod is based on the Page Title Number MOD by Greenweaver (for pagination of titles) This will prevent search engines to see topics with several pages as dublicate content. It will also make the titles much more userfriendly.

    This mod does two things. We are taking out the sitename in the titles and paginating topics and forums with page numbers.
    Both are great for SEO.

    Before doing this mod our titles will look like this:
    Viewing a forum: SmokingDDL ? View forum - Announcements & News
    Viewing a topic: SmokingDDL ? View forum - SEO Simple

    After doing this mod our titles will look like this:
    Viewing a forum: Announcements & News (if multiple pages: Page 2)
    Viewing a topic: SEO Simple (if multiple pages: Page 2)

    We dont want the SmokingDDL "Site name" of the board, or the "View forum -" and "View topic -" to appear in the titles.
    They dont have anything to do there.


    Installation for phpBB version: 3.0.4

    Open language/en/common.php
    Code: 
    'INDEX'                  => 'Index page',
    Replace with:
    Code: 
        'INDEX'         => 'Name of your board',
    Notes: Replace "Name of your board" with the name of your board. In my case it is Smokingddl.

    Find:
    Code: 
        ?>
    Before add:
    Code: 
    // Page Title Number MOD
    $lang = array_merge($lang, array(
       'TITLE_PAGE_NUMBER'   => 'Page %s',
    ));
    Open viewforum.php

    Find:
    Code: 
        page_header($user->lang['VIEW_FORUM'] . ' - ' . $forum_data['forum_name']);
    Replace with:
    Code: 
    page_header($forum_data['forum_name'] . ($start ? ' - ' . sprintf($user->lang['TITLE_PAGE_NUMBER'], floor($start / $config['topics_per_page']) + 1) : ''));
    Open viewtopic.php
    Find:
    Code: 
        page_header($user->lang['VIEW_TOPIC'] . ' - ' . $topic_data['topic_title']);
    Replace with:
    Code: 
    page_header($topic_data['topic_title'] . ($start ? ' - ' . sprintf($user->lang['TITLE_PAGE_NUMBER'], floor($start / $config['posts_per_page']) + 1) : ''));
    Open styles/your_style/template/overall_header.html
    Note: This is the same for both prosilver and subsilver2
    Find and delete:

    Code: 
        {SITENAME} •
    Purge cache and refresh templates.
    smoky Reviewed by smoky on . PhpBB3 SEO Title versions:(3.4-3.5-3.6) Description: This mod is based on the Page Title Number MOD by Greenweaver (for pagination of titles) This will prevent search engines to see topics with several pages as dublicate content. It will also make the titles much more userfriendly. This mod does two things. We are taking out the sitename in the titles and paginating topics and forums with page numbers. Both are great for SEO. Before doing this mod our titles will look like this: Viewing a forum: SmokingDDL ? View forum Rating: 5

    1SearchEngine you can choose where you want to search.

  2.   Sponsored Links

  3.     
    #2
    Member
    Website's:
    mygamegalaxy.com
    Installation for phpBB version: 3.0.5

    Open language/en/common.php
    Code: 
    'INDEX'                  => 'Index page',
    Replace with:
    Code: 
        'INDEX'         => 'Name of your board',
    Notes: Replace "Name of your board" with the name of your board. In my case it is Smokingddl.

    Find:
    Code: 
        ?>
    Before add:
    Code: 
    // Page Title Number MOD
    $lang = array_merge($lang, array(
       'TITLE_PAGE_NUMBER'   => 'Page %s',
    ));
    Open viewforum.php

    Find:
    Code: 
        page_header($user->lang['VIEW_FORUM'] . ' - ' . $forum_data['forum_name']);
    Replace with:
    Code: 
    page_header($forum_data['forum_name'] . ($start ? ' - ' . sprintf($user->lang['TITLE_PAGE_NUMBER'], floor($start / $config['topics_per_page']) + 1) : ''));
    Open viewtopic.php
    Find:
    Code: 
        page_header($user->lang['VIEW_TOPIC'] . ' - ' . $topic_data['topic_title']);
    Replace with:
    Code: 
    page_header($topic_data['topic_title'] . ($start ? ' - ' . sprintf($user->lang['TITLE_PAGE_NUMBER'], floor($start / $config['posts_per_page']) + 1) : ''));
    Open styles/your_style/template/overall_header.html
    Note: This is the same for both prosilver and subsilver2
    Find and delete:

    Code: 
        {SITENAME} •
    Purge cache and refresh templates.

    1SearchEngine you can choose where you want to search.

  4.     
    #3
    Member
    Website's:
    mygamegalaxy.com
    Installation for phpBB version: 3.0.6

    Open language/en/common.php
    Code: 
    'INDEX'                  => 'Index page',
    Replace with:
    Code: 
        'INDEX'         => 'Name of your board',
    Notes: Replace "Name of your board" with the name of your board. In my case it is Smokingddl.

    Find:
    Code: 
        ?>
    Before add:
    Code: 
    // Page Title Number MOD
    $lang = array_merge($lang, array(
       'TITLE_PAGE_NUMBER'   => 'Page %s',
    ));
    Open viewforum.php

    Find:
    Code: 
     page_header($user->lang['VIEW_FORUM'] . ' - ' .  $forum_data['forum_name'], true, $forum_id);
    Replace with:
    Code: 
    page_header($forum_data['forum_name'] . ($start ? ' - ' .  sprintf($user->lang['TITLE_PAGE_NUMBER'], floor($start /  $config['topics_per_page']) + 1) : ''), true, $forum_id);
    Open viewtopic.php
    Find:
    Code: 
    page_header($user->lang['VIEW_TOPIC'] . ' - ' .  $topic_data['topic_title'], true, $forum_id);
    Replace with:
    Code: 
    page_header($topic_data['topic_title'] . ($start ? ' - ' .  sprintf($user->lang['TITLE_PAGE_NUMBER'], floor($start /  $config['posts_per_page']) + 1) : ''), true, $forum_id);
    Open styles/your_style/template/overall_header.html
    Note: This is the same for both prosilver and subsilver2
    Find and delete:

    Code: 
        {SITENAME} •
    Purge cache and refresh templates.

    1SearchEngine you can choose where you want to search.

  5.     
    #4
    Member
    Website's:
    dirtymusic.org just4freeplanet.com nlfilms.info dirtyxxx.org
    Thanks for this tutorial, very usefull
    Selling adspots at just4freeplanet.com

    http://www.KWWHunction.com/showthread.php?t=93999


  6.     
    #5
    Member
    Thanks for the explanation.

    So if you have submits to ddl sites, will they become invalid after this mod?

  7.     
    #6
    Member
    Website's:
    mygamegalaxy.com
    no as this do not change any of the url...."SEO Title" lol

    1SearchEngine you can choose where you want to search.

  8.     
    #7
    Member
    Website's:
    litewarez.net
    Is this Goood For SEO ?

  9.     
    #8
    Member
    Website's:
    mygamegalaxy.com
    first post updated..

    1SearchEngine you can choose where you want to search.

  10.     
    #9
    Respected Member
    Isn't maybe better to have it like this: Announcements & News - SmokingDDL?


    Have fitness or bodybuilding question? Ask Smith!


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [Selling] SceneRelease - .psd - 3 Versions
    By Faizann20 in forum Marketplace (Buy, Sell and Trade)
    Replies: 9
    Last Post: 5th Apr 2012, 07:34 AM
  2. MultiPost All versions
    By Daniel_Archer in forum File Host Discussion
    Replies: 6
    Last Post: 8th Sep 2011, 03:41 PM
  3. MultiPost All versions
    By Forolockerz in forum File Host Discussion
    Replies: 2
    Last Post: 26th Aug 2011, 11:08 PM
  4. [Selling] WebDesign 2 Versions .PSD (6pages)
    By tr0jan[aLb] in forum Completed Transactions
    Replies: 0
    Last Post: 28th Jun 2011, 06:21 PM
  5. [MYBB] Custom title after every topic title [SEO Trick]
    By Gat Dat in forum Web Application/Script Support
    Replies: 0
    Last Post: 22nd Jul 2009, 11:09 PM

Tags for this Thread

BE SOCIAL