Hi there
the main product picture if fuzzy on all products in my store after the woocommerce update, How can I fix it?
Thank you
Ana
Hey ana40,
You image is 90×90 being resized up to 209×209, Please try going to Settings > Media and increase thumbnail sizes to 126x126px and then regenerate thumbnails using this plugin – https://wordpress.org/plugins/regenerate-thumbnails/
More can be read here: https://kriesi.at/support/topic/woocommerce-3-0-03-0-1-and-the-images-issue/
Best regards,
Mike
Hi Mike
I did that and it’s still fuzzy. All MAIN product image http://www.trikke.com/store/t7-convertible/
it was not like that before the wocommerce updates
what else to do?
Ana Darace
Trikke Tech Inc.
Hi Ana,
Can you try to add this code in functions.php:
global $woocommerce;
if( version_compare( $woocommerce->version, '3.0.0', ">=" ) ) {
function avia_woocommerce_gallery_thumbnail_description($img, $attachment_id, $post_id, $image_class ) {
return $img;
}
function avia_woocommerce_post_thumbnail_description($img, $post_id){
return $img;
}
}
Let us know if this helps :)
Best regards,
Nikko