Hello David,
When you go to a productpage you see above the image: Price search result for "productname"
Under the image you see related product. Is it possibleto place here also the productname after? Related product for "productname"
Thanks, JR
Ah sorry about that JR, the $product variable would be overwritten during generation of the price comparison table. Instead, use one of the following replacements (depending on your template - one of them will work...)
<?php print "Related products for ".$mainProduct["name"]; ?>
or
<?php print "Related products for ".$product_main["name"]; ?>
Cheers,
David.
--
PriceTapestry.com
Hello JR,
Sure - in html/related.php, look for where the Related Products title is displayed using:
<?php print translate("Related Products"); ?>
...and REPLACE with:
<?php print "Related products for ".$product["products"][0]["name"]; ?>
Cheers,
David.
--
PriceTapestry.com