我的magento自定义主题不是切换图像。 我在悬停在颜色上时看到这个错误:
Product.ConfigurableSwatches.onOptionOut @ swatches-product.js:540
(anonymous function) @ swatches-product.js:325
Object.extend.__method @ prototype.js:391
responder @ prototype.js:5598
我的网站url:http://www.viaflexcalcados.com.br/sandalia-usaflex-em-couro-com-tiras-102964.html
答案 0 :(得分:0)
在你的app.js
中<强>皮肤/前端/ novaworks / nova_bazien / JS / app.js 强>
第1227行中的错误。更改代码
image.elevateZoom(settings);
},
$j(".product-image-gallery").on("click", function(e) {
var src = $j('.product-image img.visible').attr('src');
$j.fancybox(src);
});
swapImage: function(targetImage) {
targetImage = $j(targetImage);
要
image.elevateZoom(settings);
$j(".product-image-gallery").on("click", function(e) {
var src = $j('.product-image img.visible').attr('src');
$j.fancybox(src);
});
},
swapImage: function(targetImage) {
targetImage = $j(targetImage);