I don't use price tapestry specifically for price comparison, so I don't really want "price search results for..." on the product page. Can I remove that line, and where the product name with hyper link is currently, move that up above the image (instead of beside it) and tag it with H1?
Hi Jill,
The "Price search results for...." is generated by the banner include, so to remove that, in products.php simply delete or comment out the following code (line 117 in the distribution):
require("html/banner.php");
To move the product name above the image, in html/products.php, move the following line (11 in the distribution):
<h3><a href='<?php print tapestry_buyURL($mainProduct); ?>' <?php print javascript_statusBar(translate("go to")." ".$mainProduct["merchant"]); ?>><?php print $mainProduct["name"]; ?></a></h3>
...up to line 2, immediately after:
<div class='product'>
Cheers,
David.