【发布时间】:2021-01-17 10:56:19
【问题描述】:
使用 Woocommerce 和我的 Storefront 子主题,我试图防止在单击单个产品图像时打开一个带有完整尺寸图像的新页面。
我希望图片不可点击,这样如果用户点击产品页面中的图片,什么都不会发生。
在我的 child-theme functions.php 中,以下代码阻止在灯箱中缩放和打开图像,但我想完全停用链接。
add_action( 'after_setup_theme', 'remove_hemen_theme_support', 100 );
function remove_hemen_theme_support() {
remove_theme_support( 'wc-product-gallery-zoom' );
remove_theme_support( 'wc-product-gallery-lightbox' );
}
我怎样才能做到这一点?
【问题讨论】:
标签: php wordpress woocommerce flexslider storefront