fbpx
Want To Add Extra Images Per Product Variation For Free? Download Now

Hi,

Images turn into a very very low resulotuion item in the additional product image.Skärmbild 2021-09-08 134058.png

 

Tanvirul Haque

Hi Zaynoodin,

Thanks for reaching out to us.

Thumbnail’s current size is 100px, if you want to increase the size please put those below PHP codes inside your child theme’s function.php and change the height and width number as px, and after adding those codes please don’t forget to regenerate your all thumbnails.

add_filter('woocommerce_get_image_size_gallery_thumbnail', function ($size) {
return array(
'width' => 100,
'height' => 100,
'crop' => 0,
);
});

Thank you