image zoom (version 1.5)

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 years ago
haydie wrote:
if you upload more than one image, thumbnails for all the product images appear - when you click them, they open up in a lightbox at the largest size you set in 'media'

you can also edit the c# to make a thumbnail appear even if it is the only product image


In the Module ProductInfo.ascx.cs

Change the code as follows
from


if (productPictures.Count > 1)
{...
}
else if (productPictures.Count == 0)
{...
}


to


if (productPictures.Count > 0)
{...
}
else if (productPictures.Count == -1)
{...
}


HTH
13 years ago
How do you code a jquery zoom for the productinfo page?  How do yo do it when it comes off a db?
13 years ago
thought wrote:

Does this require a lot of customization? I just installed version 1.8 and realized that current "product zoom" feature is a new window popup with full size images :(
13 years ago
Hi thought

can you help with integration ?
how did you integrate pictire zoom to product
i want to integrate http://www.visual-blast.com/source/jqzoom/
but can't
my mail adress: [email protected]
Thanks
13 years ago
checkout cloud zoom

http://www.professorcloud.com/mainsite/cloud-zoom.htm
13 years ago
image zoom version 1.9?
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.