Gallery thumbnail Product

I wonder if you have how the images will be shown again as it was before updating.

see printscren

Today they are shown small inside the image itself. (http://oscarveiculos.com.br/produto/volkswagen-fox-1-0-mi-bluemotion-8v-flex-4p-manual/)

I already looked for the answer in the base and I did not find anything consistent.

Hello @feradams,

Thanks for asking. :slight_smile:

I see that you have already installed child theme on the website. Please add following code in child theme function.php file:

// Remove product gallery slider and gallery zoom
// =============================================================================
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' );
}
// =============================================================================

Thanks.

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