Hi, my product images are originnaly 2000 x 1500 px files. This 4×3 format is great for single product page product images on desktop because square image doesn’t fit the browser window on smaller laptop screens but it’s too small for mobile. Therefore I want to have 4:3 product images for desktop and 1:1 product images for mobile. I tried to achieve this with following code:
if( wp_is_mobile() ) {
add_filter( 'woocommerce_gallery_image_size', function( $size ) {
return 'Thumbnail';
} );
}
but it didn’t work although thumbnail size is set and there are images of that size.
Can you please provide any suggestion on the above code or another solution?