When you click on the product link I would like for it to open in a new window.
When I click Visit store it opens in a new window but how do I get the buyurl to open in a new window?
Hi,
Sorry, yes - that modification is only the "Visit Store" link. If you mean the main buy url (the product title) on the product page then you need to make a similar modification to html/product.php. Change line 11, which is currently:
<h3><a href='<?php print tapestry_buyURL($mainProduct); ?>' <?php print javascript_statusBar(translate("go to")." ".$mainProduct["merchant"]); ?>><?php print $mainProduct["name"]; ?></a></h3>
as follows:
<h3><a target='_BLANK' href='<?php print tapestry_buyURL($mainProduct); ?>' <?php print javascript_statusBar(translate("go to")." ".$mainProduct["merchant"]); ?>><?php print $mainProduct["name"]; ?></a></h3>
That should do the trick!
Cheers,
David.
Hi,
Check the following thread for the mods needed to do this...!
http://www.pricetapestry.com/node/210
Cheers,
David.