Page 1 of 1

Click to enlarge

Posted: Tue Feb 12, 2013 7:54 am
by Delpfine
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.

Re: Click to enlarge

Posted: Tue Feb 12, 2013 8:31 am
by Brent
look for this line in whichever image display you will be using.

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>
That is what creates the button.
The files are product_image_fancybox.tpl or whichever one you are using based on your admin settings.

Re: Click to enlarge

Posted: Tue Feb 12, 2013 10:06 am
by Delpfine
That did it for the category page, but not the product detail page. Where would I find it for the product detail page?

Thanks!

Re: Click to enlarge

Posted: Tue Feb 12, 2013 10:35 am
by Brent
product_image.tpl line 4

Code: Select all

  <div class="enlarge"><?php echo $text_enlarge; ?></div></a>

Re: Click to enlarge

Posted: Tue Feb 12, 2013 11:31 am
by Delpfine
Thanks, Brent!