Ive been stuck on this problem for a few days now. My image is blurry on a single product page in Woocommerce. Now ive changed the image sizes but it doesnt work. The max with and height stay at 100×100 and i dont know how to change this.
Ive changed the sizes in the costomizer nothing happens.
Hi,
Thank you for using Enfold.
Looks like it is selecting a smaller thumbnail because of the srcset attribute. You can add this code in the functions.php file to disable that attribute.
add_filter( 'wp_calculate_image_srcset', 'avf_disable_srcset' );
function avf_disable_srcset() {
return false;
}
Best regards,
Ismael