Rod
Forum Replies Created
-
Hi, if you want to correct this just change this
zoomImgFix = $(‘.yith_magnifier_zoom_wrap > a > img’).attr(‘src’);
self.zoomDiv = $(‘<div class=”yith_magnifier_zoom_magnifier” />’).css({
left: xPos,
top: yPos,
width: w,
height: h,
‘background-repeat’: ‘no-repeat’,
backgroundImage: ‘url(‘ + zoomImgFix + ‘)’
}).appendTo(appendTo);to this one
self.zoomDiv = $(‘<div class=”yith_magnifier_zoom_magnifier” />’).css({
left: xPos,
top: yPos,
width: w,
height: h,
‘background-repeat’: ‘no-repeat’,
backgroundImage: ‘url(‘ + $(‘.yith_magnifier_zoom_wrap > a > img’).attr(‘src’) + ‘)’
}).appendTo(appendTo);on the
plugins/yith-essential-kit-for-woocommerce-1/modules/yith-woocommerce-zoom-magnifier/assets/js
and also on
plugins/yith-essential-kit-for-woocommerce/modules/yith-woocommerce-zoom-magnifier/assets/js
- This reply was modified 8 years, 2 months ago by Rod.