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

Ronak Gupta

Hi,

I got the additional variation gallery plugin. But after installing it, the thumbnail quality is very bad. Also zoom functionality is not working on mobile

I tried Regenerating the thumbnails also but it didn’t resolve the issue.

Kindly help.

Regards,

Ronak

Golam Kibria

Hi Ronak,

Please try adding the following filter to your child theme’s function.php:

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

Let me know if the problem is resolved.

Thank You