Hi David
Currently my title displays something like:
my site : category:Product name:
or
my site : merchant:Merchant Name:
I suppose this comes from the tag that i have between :
<?php
print (isset($header["title"])?$header["title"]:$config_title);
?>
What can I do to get rid of : category: AND : merchant:
In order to get:
my site : Product name
my site : Merchant Name
Thanks
Pat
Hi Pat,
Here's a thread with instructions for removing brand:, category: and merchant: from the title bar:
http://www.pricetapestry.com/node/291
As it stands, when a script generated title is available the site name is not displayed, but you could easily change this by changing the above code (from your post) to the following:
<?php
print (isset($header["title"])?"My Site : ".$header["title"]:$config_title);
?>
Hope this helps!
Cheers,
David.