Hi
I would like to include the merchant and price of the product in the title in the header on the product page so it shows in the search engine, I know there may be more than one price and merchant, ideally it would be for the cheapest price. Could this be done
thanks
Brent
Hi Brent,
Sure - the title is currently set by this code at line 50 of products.php:
$header["title"] = htmlentities($q,ENT_QUOTES,$config_charset);
At this point, the cheapest product record is in the variable $product["products"][0], so if you replace the above line with something like this, the price and merchant name will show in the title. Of course you can edit the text around the variables as required:
$header["title"] = htmlentities($q,ENT_QUOTES,$config_charset). " available from ".$product["products"][0]["merchant"]." for ".$config_currencyHTML.$product["products"][0]["price"];
Cheers,
David.