如何在档案产品上禁用点击缩略图产品

时间:2018-08-27 作者:Angga Pradipta

我想禁用在存档产品页面上单击我们的产品图像。因此,用户只能单击按钮。

enter image description here

2 个回复
最合适的回答,由SO网友:Carlos Faria 整理而成

在您的功能中。php

remove_action( \'woocommerce_before_shop_loop_item\', \'woocommerce_template_loop_product_link_open\', 10 );
remove_action( \'woocommerce_after_shop_loop_item\', \'woocommerce_template_loop_product_link_close\', 5 );

SO网友:Angga Pradipta
cursor: default !important;
pointer-events: none !important;
结束

相关推荐