Hello,
On my X Theme Woocommerce website I would like to get the thumbnails of the product to be underneath the main product image rather than on top of it as it currently is.
The following code allows me to do that:
add_action( ‘after_setup_theme’, ‘remove_woo_features’, 999 );
function remove_woo_features(){
remove_theme_support( ‘wc-product-gallery-slider’ );
}
However this code means that when you click on one of the thumbnails it opens the photo up as a file rather than changing the ‘woocommerce-product-gallery__image flex-active-slide’ which is the ‘active’ current photograph.
Does anyone know how to do this?
Thanks very much.