Woocommerce lightbox not working -


after updating woocommerce 3.0.8, lightbox not working anymore. found lot of people adding following code functions.php in theme folder solves problem.

add_action( 'after_setup_theme', 'yourtheme_setup' ); function yourtheme_setup() {     add_theme_support( 'wc-product-gallery-zoom' );     add_theme_support( 'wc-product-gallery-lightbox' );     add_theme_support( 'wc-product-gallery-slider' ); }

however, in our case not solve problem (actually nothing changes). have idea how can enable lightbox again?

you can see in action on www.lightningkabels.nl.

thanks lot!


Comments

Popular posts from this blog

android - IllegalStateException: Cannot call this method while RecyclerView is computing a layout or scrolling -

go - serving up pdfs using golang -

how to add preprocess loader in webpack 2 -