hi David
I am looking to change some of the meta stuff, done everything except title for product page, i want to put the company and price for the item, is this possible due to the fact that some products have more than one company with different prices. My thought was to show the cheapest price and company if that was possible.
Brent
Hi Brent,
Sure, the product page <title> is set by the following code in products.php
$header["title"] = htmlentities($q,ENT_QUOTES,$config_charset);
(search $header["title"] to find the line)
At this point in the code, the cheapest product record is available in the variable
$product["products"][0]
So to append to the text " [price] from [merchant]" to the title, REPLACE the above line with:
$header["title"] = htmlentities($q,ENT_QUOTES,$config_charset)." ".$config_currencyHTML.$product["products"][0]["price"]." from ".htmlentities($product["products"][0]["merchant"],ENT_QUOTES,$config_charset);
Cheers,
David.
--
PriceTapestry.com