Hi
We have connected our store to mailchimp and when we pull through products to our newsletter, all the images are being cropped to 220×150 and the result is pixelating images. I have adjusted the thumbnail sizes in woocommerce settings, products >> display and regenerated thumbnails with no effect, images are still being cropped to 220×150.
So after lots of back and forth between the plugin authors and woocommerce it turns out the issue is coming from the theme.
Please see below from theme’s functions.php file. Please can you advise how I can override the thumbnail size as that seems to be what is cropping my images into the mailchimp plugin, see the distorted image here http://mailchi.mp/nativeinteriors/winter-trends?e=d6b72c62f1 .
/* THUMBNAIL SIZES
================================================== */
set_post_thumbnail_size( 220, 150, true);
add_image_size( ‘widget-image’, 94, 70, true);
add_image_size( ‘thumb-square’, 250, 250, true);
add_image_size( ‘thumb-image’, 600, 450, true);
add_image_size( ‘thumb-image-twocol’, 900, 675, true);
add_image_size( ‘thumb-image-onecol’, 1800, 1200, true);
add_image_size( ‘blog-image’, 1280, 9999);
add_image_size( ‘gallery-image’, 1000, 9999);
add_image_size( ‘large-square’, 1200, 1200, true);
add_image_size( ‘full-width-image-gallery’, 1280, 720, true);