Answers for "woo when i click variation the product gallery image change to 100x100"

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 "woo when i click variation the product gallery image change to 100x100"

Browse Popular Code Answers by Language