Hi I’m using x 6.0.4 and recently updated my woocommerce on my staging site to 3.4.0. When I did my product page images stopped functioning (in exactly the same way that they did after woocommerce 3.0 came out).
I have tried adding the following code to my x child theme’s function.php (as I seem to remember that resolved the issue last time until x was updated)
add_action( ‘after_setup_theme’, ‘x_child_theme_setup’ );
function x_child_theme_setup() {
add_theme_support( ‘wc-product-gallery-zoom’ );
add_theme_support( ‘wc-product-gallery-lightbox’ );
add_theme_support( ‘wc-product-gallery-slider’ );
}
but it’s having no effect. I also tried downloading the single product template files from woo into my child theme to see if overriding would help but also no joy. I suspect the problem is me, not the theme, but could anyone help?
Thanks