Answers for "how to show full height image in thumbnail of the product in woocommerce"

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 "how to show full height image in thumbnail of the product in woocommerce"

Browse Popular Code Answers by Language