changin text to a button
Submitted by paullas on Fri, 2009-01-09 16:09.Price Tapestry
hi
is there a way to change the text Visit Store to a graphical button
thanks
paul
Support forum loginActive forum topics©2006-2012 IAAI Software |
changin text to a buttonSubmitted by paullas on Fri, 2009-01-09 16:09.Price Tapestry
hi is there a way to change the text Visit Store to a graphical button thanks |
Hi Paul,
Sure - in html/prices.php, the Visit Store link is generated by this code on line 14:
<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>...simply change this as follows:
<td align='center'><a href='<?php print tapestry_buyURL($product); ?>' <?php print javascript_statusBar("go to ".$product["merchant"]); ?>><img src='/visitstore.gif' border='0' /></a></td>...where /visitstore.gif is the absolute path to the image file you want to use (i.e begins with "/") otherwise the image won't be found when on product pages using rewrite...
Cheers,
David.