Answers for "how to fix and make the pictures of the products the same 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 fix and make the pictures of the products the same in woocommerce"

Browse Popular Code Answers by Language