首页 > 解决方案 > 灯箱 ix 中的 Woocommerce 产品图像未显示在产品详细信息页面上

问题描述

我有一个网站,其中产品库在产品详细信息页面上不起作用,我尝试添加第三方插件,但似乎没有任何效果。

在这里,当您单击产品图片时,它应该在灯箱中作为产品库打开。

https://bosheimsmarken.no/produkt/reinrot-te-med-tea-shotnon-binding-subscriptions/

标签: wordpress

解决方案


尝试安装此插件并检查主题选项或 woocommerce 选项中是否有禁用此图库的选项。

Codeixer 的 Woocommerce 产品图库滑块

还在活动主题中的functions.php中添加此代码

add_action( 'after_setup_theme', 'bbloomer_remove_zoom_lightbox_theme_support', 99 );

function bbloomer_remove_zoom_lightbox_theme_support() { 
remove_theme_support( 'wc-product-gallery-zoom' );
remove_theme_support( 'wc-product-gallery-lightbox' );
remove_theme_support( 'wc-product-gallery-slider' );
}

推荐阅读