I have lightbox for zen cart and found where to set the Include Main Image in Gallery but how do i exclude the top product image when i click on it. I only want to the other pics to show up _1.jpg and _2.jpg
I have lightbox for zen cart and found where to set the Include Main Image in Gallery but how do i exclude the top product image when i click on it. I only want to the other pics to show up _1.jpg and _2.jpg
Here is the code i used to have for the images
<script language="javascript" type="text/javascript"><!--
document.write('<?php echo '<a href="' . zen_lightbox($products_image_large, addslashes($products_name), LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT) . '" rel="' . $rel . '" title="' . addslashes($products_name) . '">' . zen_image($rs_products_image_large, addslashes($products_name), 300, 300) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>'; ?>');
document.write('<?php echo '<a href="' . zen_lightbox($rs_products_image_large_1, addslashes($products_name), LARGE_IMAGE_WIDTH, LARGE_IMAGE_HEIGHT) . '" rel="' . $rel . '" title="' . addslashes($products_name) . '" style="display: none;">' . zen_image($rs_products_image_large, addslashes($products_name), 300, 300) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>'; ?>');
//--></script>
on 1.3.8a
Here is the code on the main_product_image.php
$rs_products_image_large=str_replace('images/','images/1_',$products_image_large);
$rs_products_image_large_1=str_replace('.','_1.',$products_image_large);
I tried to change both but did'nt work should i change something in the database or?
Anyone know how to fix this?