Override WooCommerce Gallery Thumbnail
<?php | |
add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) { | |
return array( | |
'width' => 400, | |
'height' => 400, | |
'crop' => 1, | |
); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment