Hey there guys, would like to ask u to help me with this code for tomato cart..i also posted there..but here is a bigger community of skilled programmers i would say. So what I want is.. after i enter a product i would like to buy...want the title to be shown as this example : Buy quality shoes - Nike Air (this is the manufacturer i want in the title) - Store Name I know this is the code to be modified <title><?php echo ($osC_Template->hasMetaPageTitle() ? $osC_Template->getMetaPageTitle() . ' - ' : '') . STORE_NAME; ?></title> but dont know how : at the moment its showing only : Buy quality shoes - store name....so i want to add there manufacturer also..after u enter a product page. any help appreciated..thx much
I've never used TomatoCart, but a quick Google search led me to this: http://www.tomatocart.com/community...lay-product-manufacture-in-product-info-.html So, just change it to something like: <title><?php echo ($osC_Template->hasMetaPageTitle() ? $osC_Template->getMetaPageTitle() . ' - ' : '') . $osC_Product->getManufacturer() . ' - ' . STORE_NAME; ?></title> PHP: