How to make the products gallery images bigger

http://perfectusedtires.com/product/used-tire-250-w215-17/

Hello There,

Thanks for writing in!

The shop demo is different from what you have now because the latest version supports the WooCommerce product gallery slider and product gallery zoom by default. If you check the shop demo, it is displaying the product image and thumbnails. If you want to have the old layout, you will have to remove the default Woo product image Support. Because what you are trying to accomplish requires a template customization, we would highly to suggest that you use a child theme. This allows you to make code changes that won’t be overwritten when an X update is released.

After the child theme is set up, please add the following code in your child theme’s functions.php file

function my_wc_product_gallery_setup() {
  remove_theme_support( 'wc-product-gallery-zoom' );
  //remove_theme_support( 'wc-product-gallery-lightbox' );
  remove_theme_support( 'wc-product-gallery-slider' );
}

add_action( 'after_setup_theme', 'my_wc_product_gallery_setup', 100 );

Hope this helps.

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