Lightbox ix中的Woocommerce产品图像未显示在产品详细信息页面上

时间:2018-12-07 07:47:08

标签: wordpress

我有一个网站上的产品画廊在产品详细信息页面上不起作用,我曾尝试添加第三方插件,但似乎无济于事。

在此处单击产品图片时,它应在灯箱中作为产品库打开。

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

1 个答案:

答案 0 :(得分:0)

尝试安装此插件,并在主题选项或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' );
}