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

networking - Vagrant-provisioned VirtualBox VM is not reachable from Ubuntu host -

c# - ASP.NET Core - There is already an object named 'AspNetRoles' in the database -

ruby on rails - ArgumentError: Missing host to link to! Please provide the :host parameter, set default_url_options[:host], or set :only_path to true -