V 3.015
Before the 68C server crashed, someone (maybe Lhotch) indicated me how to change the tag title structure in the sub-category pages to put "site name" at the end of the title; e.g. Rome � Apartments � Site Name
To do so, I put this code in the category.php file, line 96:
$site_title=$title;
$title="";
foreach ($titlebread as $key => $value)
{
$title.=$value .' '. LANG_CAT_SEPERATOR .' ';
}
$title.=$site_title;
$cols=$subCategoryCols;
$body='categories/subcategories.tpl.php';
I would like to do the same thing in the title of the listing page;
now the title structure is:
Site Name : Title of the Listing
I would like to change so:
Title of the Listing : Site Name
Someone can help me to do this change?
