Is it possible or a bad idea to try to have a pop-up window when visitors Visit Store - so they can come right back to our site.
Thanks - Steve
You could change it to a new window if you wish. To make the change, edit html/prices.php and change:
<td align='center'><a href='<?php print tapestry_buyURL($product); ?>' <?php print javascript_statusBar("go to ".$product["merchant"]); ?>><?php print translate("Visit Store"); ?></a></td>
to:
<td align='center'><a target='_BLANK' href='<?php print tapestry_buyURL($product); ?>' <?php print javascript_statusBar("go to ".$product["merchant"]); ?>><?php print translate("Visit Store"); ?></a></td>
©2006-2025 IAAI Software | Contact Us | Privacy Policy
You could change it to a new window if you wish. To make the change, edit html/prices.php and change:
<td align='center'><a href='<?php print tapestry_buyURL($product); ?>' <?php print javascript_statusBar("go to ".$product["merchant"]); ?>><?php print translate("Visit Store"); ?></a></td>
to:
<td align='center'><a target='_BLANK' href='<?php print tapestry_buyURL($product); ?>' <?php print javascript_statusBar("go to ".$product["merchant"]); ?>><?php print translate("Visit Store"); ?></a></td>