I have a magento online store, where I am trying to customize the product page.
On the page I have the main product image with the jqZoom, and also thumbnails generated by the magento, with a onmouseover function that changes the main image.
After long days of changing the functions and codes today I made everything working in my two browsers on the MacBook, but there are issues on any other computer I tested.
On the first load, the first image is loading up perfectly, and the zoom is working, but as soon as you mouseover and the image is changed, the zoom is not working anymore on most of the browsers.
Here's the code:
. . . . In the head I added this:
<script>
$('imgzoom').ready(function(){
var options = {
zoomType: 'innerzoom',
title:false,
lens:false,
preloadImages: true,
alwaysOn:false,
zoomWidth: 300,
zoomHeight: 400,
xOffset:10,
yOffset:0,
position:'left'
//...MORE OPTIONS
};
jQuery('.imgzoom').jqzoom(options);
});
</script>
<script>
function startzoom() {
var options = {
zoomType: 'innerzoom',
title:false,
lens:false,
preloadImages: true,
alwaysOn:false,
zoomWidth: 300,
zoomHeight: 400,
xOffset:10,
yOffset:0,
position:'left'
//...MORE OPTIONS
};
jQuery('.imgzoom').jqzoom(options);
};
</script></code>
. . . . . This is the code that magento uses to generate the link and the big image for the product
<p class="product-image product-image-zoom">
<?php
$_img = '<a href="'.$this->helper('catalog/image')->init($_product, 'image').'" class="imgzoom" rel="gal1" title="MYTITLE" id="imglink"><img width="380" name="img1" src="'.$this->helper('catalog/image')->init($_product, 'image').'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" /></a>';
$imagehelper = $_helper->productAttribute($_product, $_img, 'image');
echo $imagehelper;
?>
</p>
. . . . . And this is the foreach loop in the thumbnails that makes all the changes
<?php
++$i;
?>
<script>
function update_img<?php echo $i; ?>()
{
//$.jqzoom.disable('.jqzoom')
//jQuery('.imgzoom').disable('.imgzoom');
jQuery('.imgzoom').remove();
jQuery('.product-image.product-image-zoom').append('<?php echo $imagehelper; ?>');
img1.src = "<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile()) ?>";
jQuery('#imglink').attr('href', '<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile()) ?>');
startzoom();
//jQuery('#imgholdwrap').attr('style', 'width: 100%; height: 570px');
return false;
}
</script>
<a href="#" onclick="popWin('<?php echo $this->getGalleryUrl($_image) ?>', 'gallery', 'width=300,height=450,left=0,top=0,location=no,status=yes,scrollbars=yes,resizable=yes'); return false;" title="<?php echo $this->htmlEscape($_image->getLabel()) ?>"><img onmouseover="update_img<?php echo $i; ?>()" src="<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile()); ?>" width="66" height="100" alt="<?php echo $this->htmlEscape($_image->getLabel()) ?>" /></a>
. . . .
The main problem I believe is that somewhere between where I remove the jQzoom and I add it back, the height of the picture is not transmitted right, as a result the function is called, but the & generated by jqZoom have the height of 0, if you change the setting in the code inspector to a certain px value, the zoom will work, but the picture is not being cut correctly
Here's the link to a product on the website: http://zeroinchapparel.com/index.php/men-short-sleeve/grand-experience.html
p.s. eventually I need to display the zoom picture as Standard (on the right of the picture) but, when I set the settings to standard, the window with the zoomed picture is not being shown, could there be some issues with the z-index?
p.s.2. This is my first time working with javascript or jQuery, so I'm a complete n00b!
UPDATES: Found some code that was incompatible with IE, that was easily replaced
img1.src = "<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile()) ?>";
Turns out IE couldn't assign the new src to the id "IMG1", rewrote it as:
document.getElementById('img1').src = "<?php echo $this->helper('catalog/image')->init($this->getProduct(), 'thumbnail', $_image->getFile()) ?>";
Still have issues with some versions of Chrome, that doesn't show the zoomed image on mouseover after src change...