I added this code to restore default WooCommerce gallery
add_action( ‘after_setup_theme’, ‘remove_woo_three_support’, 11 );
function remove_woo_three_support() {
remove_theme_support( ‘wc-product-gallery-zoom’ );
remove_theme_support( ‘wc-product-gallery-slider’ );
}
Now I’m able to see the thumbnails below the featured image. However, when I click on the gallery thumbnail, it opens in lightbox instead of changing the featured image. How do I fix this?