Override `woocommerce-single` image size
<?php | |
add_filter( 'woocommerce_get_image_size_single', function( $size ) { | |
return array( | |
'width' => 400, | |
'height' => '', | |
'crop' => 0, | |
); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment