add this code in your /public/www/wp-content/themes/<theme>/functions.php
add_filter ( ‘woocommerce_product_thumbnails_columns’, ‘zz_thumb_cols’ );
function zz_thumb_cols() {
return 8; //Change the 8 to reflect how many columns you need
}
I would like to have my thumbnails a bit smaller to have more thumbnails in the same row (by default are 3 and I want to have 10 thumbnails in the same row), I’ve already changed my woocommerce CSS to decrease the width to 10% but it still change line after the third images …. where can I remove change it to have 10 thumbnails per line?