You are here:  » Adding An Affiliate Link To Main Product Images

Support Forum



Adding An Affiliate Link To Main Product Images

Submitted by Arya on Thu, 2009-07-09 23:10 in

I would be very grateful if someone could help me with adding affiliate links to the main product images.

I suspect that I will need to modify the code within product.php, but I am little stuck on exactly how to do it.

Here is the code from product.php as it stands now: -

<?php if ($mainProduct["image_url"]): ?>
<img class='bdr' width='200' height='280' src='<?php print $mainProduct["image_url"]; ?>' alt='<?php print $mainProduct["name"]; ?>' title='<?php print $mainProduct["name"]; ?>' />
<?php endif; ?

If anyone can assist with a suggested modification I would very much appreciate it.

Regards,

Arya Marafie.

Submitted by support on Fri, 2009-07-10 08:53

Hello Arya,

To do this, simply modify the above section of html/product.php as follows:

<?php if ($mainProduct["image_url"]): ?>
<a href='<?php print tapestry_buyURL($mainProduct); ?>'>
<img class='bdr' width='200' height='280' src='<?php print $mainProduct["image_url"]; ?>' alt='<?php print $mainProduct["name"]; ?>' title='<?php print $mainProduct["name"]; ?>' />
</a>
<?php endif; ?

Cheers,
David.