You are here:  » Links open in new window.

Support Forum



Links open in new window.

Submitted by AD_Mega on Wed, 2007-03-07 23:31 in

When you click on the product link I would like for it to open in a new window.

Submitted by support on Thu, 2007-03-08 07:39

Hi,

Check the following thread for the mods needed to do this...!

http://www.pricetapestry.com/node/210

Cheers,
David.

Submitted by AD_Mega on Thu, 2007-03-08 14:00

When I click Visit store it opens in a new window but how do I get the buyurl to open in a new window?

Submitted by support on Thu, 2007-03-08 14:06

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.

Submitted by AD_Mega on Thu, 2007-03-08 22:44

That did the trick thanks!