Missing Site Title from Pages

Discussion in 'Customizations' started by performancecentral, Feb 18, 2013.

  1. Hey all,
    Just trying to work out what i've done to remove the site title from page

    I wanted to have:

    | Page Name | Site Name |

    I am using the seo mod but i'm not sure if that would affec it.
    Thanks
    Adrian
  2. freeze2 Super Moderator

    This is what I have done, I believe this only works with the listing page though...I believe Blair had showed me what to do...

    In viewlisting.php

    Find:

    Code:
    $title.=' '. LANG_CAT_SEPERATOR .' '. $rs['title'];
    Replace with:

    Code:
    $title= $rs['title'] .' '. LANG_CAT_SEPERATOR .' '. $title;
    In language/english.php

    Find:

    Code:
    define('LANG_CAT_SEPERATOR', '»');
    Replace with:

    Code:
    define('LANG_CAT_SEPERATOR', '|');
  3. Thanks so much mate much appreciated

Share This Page