Hello There,
I have checked your site and I can see that a product gallery slider is working. Clicking a thumbnail will scroll the main product image. Please keep in mind that WooCommerce does not have the same functionality with shopify. If you do not want to display the product gallery slider and the lightbox, since the child theme is set up, please add the following code in your child theme’s functions.php file
add_filter( 'after_setup_theme', 'remove_new_wc_features', 99 );
function remove_new_wc_features() {
remove_theme_support( 'wc-product-gallery-zoom' );
remove_theme_support( 'wc-product-gallery-lightbox' );
remove_theme_support( 'wc-product-gallery-slider' );
}
This will remove the product gallery slider, gallery lightbox and gallery zoom support.
Hope this helps.