Hi,
I think it is related to this icon http://joxi.ru/KAxYRQwsKy3y9r You need to add css to fix it.
Could you send me an url of product page with cpo options?
What do I need to do to reproduce that issue? I don’t see that problem http://joxi.ru/zANeZ1LFjebRB2
Yes we have cropped the images to 1.1. to get around the problem in the meantime, Do not add edge, just put “calculate” and add to cart.
I think you need to use square image here http://joxi.ru/82Qe38aF9EPY42 You get cropped image when you add product to the cart http://joxi.ru/bmoYQNwsyD6RXA
In the woocommerce shop settings the images are not cropped, is there another setting?
https://zupimages.net/viewer.php?id=21/12/z086.png
1. I don’t understand French http://joxi.ru/EA4KewOupgPpx2 Sorry.
2. As I told you try to add square image (as product image) for that product http://joxi.ru/p27RewxcNy3Nwm
I found the solution with this code, the images are fine now.
https://zupimages.net/viewer.php?id=21/12/jbai.png
add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) {
return array(
'width' => 150,
'height' => 150,
'crop' => 0,
);
} );