hubbobubbo Posted November 28, 2012 Share Posted November 28, 2012 Hi I am starting to add categories and on my site I now see that in the web browser tabs it looks like this: MySiteName - Category1 I would simply like it to look like this instead: MySiteName | Category1 Simply changing the - sign to a | Whats the proper way to change this separator. Thanks in advance Link to comment Share on other sites More sharing options...
shacker Posted December 2, 2012 Share Posted December 2, 2012 in classes/tool.php, find /* Categories specifics meta tags */ elseif ($id_category = self::getValue('id_category')) { if (!empty($title)) $title = ' - '.$title; change to /* Categories specifics meta tags */ elseif ($id_category = self::getValue('id_category')) { if (!empty($title)) $title = ' | '.$title; Link to comment Share on other sites More sharing options...
Recommended Posts