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

python - What's the Pythonic way to report nonfatal errors in a parser? -

angular - Converting AngularJS deffered promise to AngularX observable for JSOM -

python - AssertionError when trying to assert return value from two dictionaries with py.test -