Thanks for your response!
I found another solution. Paste this code into functions.php
add_filter( 'woocommerce_get_image_size_thumbnail', function( $size ) {
return array(
'width' => 500,
'height' => 500,
'crop' => 1,
);
} );
-
This reply was modified 4 years, 6 months ago by dvarakashop.