Quote Originally Posted by yellow1912 View Post
It is rather easy to do so, you can edit includes/templates/your_template/tpl_modules_main_product_image.php

Around line 15 you will find

PHP Code:
document.write('<a href="<?= $products_image_large;?>" id="jqzoomMain"<?php if (JQLIGHTBOX_STATUS == 'true') echo ' class="jqlightbox"';?>><?= zen_image($products_image_mediumaddslashes($products_name), MEDIUM_IMAGE_WIDTHMEDIUM_IMAGE_HEIGHT);?></a>');
Replace by

PHP Code:
document.write('<a href="<?php echo $products_image_large;?>" id="jqzoomMain"<?php if (JQLIGHTBOX_STATUS == 'true') echo ' class="jqlightbox"';?>><?php echo zen_image($products_image_mediumaddslashes($products_name), MEDIUM_IMAGE_WIDTHMEDIUM_IMAGE_HEIGHT);?><br /><span class="imgLink"><?php echo TEXT_CLICK_TO_ENLARGE;?></span></a>');
As for the request to prevent downloading image, it is technically impossible. So your best option is to watermark your images.
Hi Yellow, i change the code as you wrote, but still have duplicate images.
What I need to change also?

Please tell me I use Jquery Lightbox with simple menu, and when I try to see image, the menu over picture http://www.usim.co.il/en/nokia-c-9/nokia-n95-p-853 . How to resolve it? maybe need to add z-index?
Thanks