Thumbnail size

Hey,
how can I change the size of my thumbnails? they are quite small

they are just at 1.5em now. And also, can I place them below the main picture?

best regards

Nik

Hey Nik,

The Pro’s design for WooCommerce’s Gallery Slider. To disable it, you will need to add the code below in your child theme’s functions.php. If you haven’t setup a child theme yet, please see https://theme.co/apex/forum/t/setup-how-to-setup-child-themes/57

add_action( 'after_setup_theme', 'disable_wc_new_features', 99 );
 
function disable_wc_new_features() {
  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.