What do I need to do to remove "Click to enlarge" on the product photos on the category page and the product details page?
Thanks.
Click to enlarge
Re: Click to enlarge
look for this line in whichever image display you will be using.
That is what creates the button.
The files are product_image_fancybox.tpl or whichever one you are using based on your admin settings.
Code: Select all
<div class="enlarge"><a id="<?php echo $this_controller.$product['product_id']; ?>" href="<?php echo $product['popup']; ?>" class="thickbox"><?php echo $text_enlarge; ?></a></div>The files are product_image_fancybox.tpl or whichever one you are using based on your admin settings.
Re: Click to enlarge
That did it for the category page, but not the product detail page. Where would I find it for the product detail page?
Thanks!
Thanks!
Re: Click to enlarge
product_image.tpl line 4
Code: Select all
<div class="enlarge"><?php echo $text_enlarge; ?></div></a>Re: Click to enlarge
Thanks, Brent!