Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1104582

    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.

    https://ibb.co/7NvmXfx

    • This topic was modified 5 years, 6 months ago by Vindewin.
    #1104583

    #1105715

    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

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.