Title: Thumbnails poor resolution
Last modified: June 28, 2022

---

# Thumbnails poor resolution

 *  [bebizzy](https://wordpress.org/support/users/bebizzy/)
 * (@bebizzy)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/thumbnails-poor-resolution/)
 * 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](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fthumbnails-poor-resolution%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 1 replies (of 1 total)

 *  [Juan Coronel](https://wordpress.org/support/users/juaancmendez/)
 * (@juaancmendez)
 * [3 years, 11 months ago](https://wordpress.org/support/topic/thumbnails-poor-resolution/#post-15781843)
 * 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.

 * ![](https://ps.w.org/yith-woocommerce-zoom-magnifier/assets/icon.svg?rev=3055439)
 * [YITH WooCommerce Product Gallery & Image Zoom](https://wordpress.org/plugins/yith-woocommerce-zoom-magnifier/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/yith-woocommerce-zoom-magnifier/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/yith-woocommerce-zoom-magnifier/)
 * [Active Topics](https://wordpress.org/support/plugin/yith-woocommerce-zoom-magnifier/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/yith-woocommerce-zoom-magnifier/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/yith-woocommerce-zoom-magnifier/reviews/)

 * 1 reply
 * 2 participants
 * Last reply from: [Juan Coronel](https://wordpress.org/support/users/juaancmendez/)
 * Last activity: [3 years, 11 months ago](https://wordpress.org/support/topic/thumbnails-poor-resolution/#post-15781843)
 * Status: not resolved