Jump to content

How change page category spearator from - to |


Recommended Posts

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

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

×
×
  • Create New...