Change position of Woocommerce Product Gallery

Hello there,

I’m wondering how to move the product gallery on the Woocommerce Single Product Page from floating over the top right of the product image the bottom left of the product image. I’m also wondering if it’s possible to display the thumbnails vertically as opposed to horizontally. Thanks!

Hi There,

To move the product gallery to the bottom of product image, please add this code under functions.php file locates in your child theme:

add_action( 'after_setup_theme', 'remove_woo_features', 999 );
function remove_woo_features(){
	remove_theme_support( 'wc-product-gallery-slider' );
}

Hope it helps :slight_smile:

1 Like

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.