You are here:  » Inc.Price and Merchant in title on product page

Support Forum



Inc.Price and Merchant in title on product page

Submitted by wilkins on Tue, 2008-11-11 09:16 in

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

Submitted by support on Tue, 2008-11-11 10:02

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.