bizsol wrote:Hi Mladen
re copied code to page, works much better now
see: http://www.whiteopticsglasses.com
Users will have to select each specific model page
as it won't work when small image changes from small carousel
underneath.
But the specific model image dowload facility is now avaialble.
If you have anymore thoughts on improving this, please let me know
I thank you so much for your help and support, invaluable
Will be in touch,
Best regards
Martyn
Hi,
We can make the link to be changed on change of the main image.
To do this, you have to find the /Plugins/SevenSpikes.Nop.Plugins.CloudZoom/Views/CloudZoom/CloudZoom.cshtml file and find the <div class="picture-thumbs"> element. Before its closing tag add this code:
<script type="text/javascript">
(function() {
$('.cloud-zoom-gallery').on('click', function() {
$('.downloadPictureLink').attr('href', $(this).attr('href'));
});
})();
</script>
I hope this helped !