Changing image sizes via hooks in WooCommerce
If you need more control over thumbnail sizes here is a hook available to you.
add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) { return array( 'width' => 150, 'height' => 150, 'crop' => 0, ); } );