0

我正在使用 Magento Moo_CloudZoom 插件来实现产品缩放功能。基本图像很好地缩小了。

但是,当您单击在弹出窗口中打开的基本图像产品图像库时,我想禁用库图像弹出窗口。谁能帮我解决这个问题。

谢谢

4

2 回答 2

0

转到此位置 template\moo\catalog\product\view\media.phtml

评论第63行的内容,这样就去掉了点击图片的提示

然后评论第 69 行的内容,即低于 1

$_img = '<img src="'.$this->helper('catalog/image')->init($_product, 'image')->resize(265).'" alt="'.$this->htmlEscape($this->getImageLabel()).'" title="'.$this->htmlEscape($this->getImageLabel()).'" />';
        echo $_helper->productAttribute($_product, $_img, 'image');
于 2013-05-20T15:55:37.630 回答
0

有同样的问题..

去 。skin/frontend/wc/default/js/cloud-zoom.1.0.2.min.js 并在js文件中注释以下行

$mouseTrap.unbind('click').bind('click', function() { var a = $(this).prev('a'); var l = a.attr('data-lightbox'); if (l != null) { a.trigger('click'); return; } var t = a.attr('gallery'); if (t == '') { return; } popWin(t, 'gallery', 'width=300,height=300,left=50,top=50,location=no,status=yes,scrollbars=yes,resizable=yes'); });

这将保留悬停在所需图像上并禁用 onclick 事件

于 2017-08-21T09:53:39.620 回答