Answers for "woocommerce default single product image and gallery"

0

wocommerce product image

add_filter( 'woocommerce_get_image_size_gallery_thumbnail', function( $size ) {
return array(
'width' => 150,
'height' => 150,
'crop' => 0,
);
} );
Posted by: Guest on August-31-2020

Code answers related to "woocommerce default single product image and gallery"

Browse Popular Code Answers by Language