how to fix and make the pictures of the products the same in woocommerce code example
Example: wocommerce product image
add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) {
return array(
'width' => 150,
'height' => 150,
'crop' => 0,
);
} );