0

我可以在 Prestashop 1.7 上禁用选项 Jzoom。我不能禁用。

我的产品商店基于 Prestashop。

https://elgrifo.com/tienda/es/

我更改了 products.tpl 和 product-cover-thumbnails.tpl 没有成功。

你能帮助我吗?

Prestashop 1.7。我在我的系统中搜索了缩放模块,但我认为我没有这种方式的模块。

在 Prestashop 1.7 中禁用 Jzoom 查询

4

2 回答 2

0

我可以通过主题编辑器对其进行更改。

于 2019-10-09T09:53:19.533 回答
0

just remove the A tag who call the zoom modal (i guees in product-cover-thumbnails.tpl):

<a class="expander" data-toggle="modal" data-target="#product-modal"><span><i class="fa fa-expand" aria-hidden="true"></i></span></a>

In case you cannot find the tag, had this JS snippet to desactivate the click on picture :

$('.expander').click(function(e){return false;});
于 2019-08-19T08:25:55.460 回答