• All of my thumbnail images are “fuzzy”, like the resolution is really small. When you get the image URL the image is full size.

    Is there something that can be done to have those image display at a better resolution?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Support Juan Coronel

    (@juaancmendez)

    hello there,
    we hope you’re doing well!

    This is probably because you have Lazy Loading enabled on your images. Could you try to disable it?

    Another solution is to add the following code in the functions.php file of your active theme:

    if ( ! function_exists( 'single_product_small_thumbnail_size_custom' ) ) {
        function single_product_small_thumbnail_size_custom( $size) {
            $size = 'woocommerce_thumbnail';
            return $size;
        }
        add_filter( 'single_product_small_thumbnail_size', 'single_product_small_thumbnail_size_custom', 9999, 1 );
    }

    Instead of ‘woocommerce_thumbnail’ you can also try ‘woocommerce_single’ or ‘woocommerce_gallery_thumbnail’.

    In any case, with the default configuration in our installation the images are defined, so surely removing the lazy loading will solve the problem.

    Check everything and let us know any news, please.

    Have a nice day!

Viewing 1 replies (of 1 total)
  • The topic ‘Thumbnails poor resolution’ is closed to new replies.