[Support request] woo thumbnail mages blurry on single product page but fine on catalogue page

Home Forums Support [Support request] woo thumbnail mages blurry on single product page but fine on catalogue page

Home Forums Support woo thumbnail mages blurry on single product page but fine on catalogue page

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #926781
    Paul

    Hi
    Question as above. Trying to work out what i can do or where i can go to look at sizes. been in the customizer but same issues with thumbnails on single product page whatever i try . Thumbnails seem fine on shop/catalogue page but blurry on single product page page. Not sure where to go to remedy issue, is it a theme setting??
    Thanks for any help (yet again)
    Paul

    #926794
    David
    Staff
    Customer Support

    Hi there,

    Woo in their latest update decided to remove the function to size the tiniest thumbnail and also reduced it to 100px.

    You can add this PHP snippet to increase the thumbnail to 150px:

    function woo_gallery_thumb_size( $size ) {
    	return array(
    		'width'  => 150,
    		'height' => 150,
    		'crop'   => 1,
    	);	
    }
    
    add_filter( 'woocommerce_get_image_size_gallery_thumbnail', 'woo_gallery_thumb_size' );

    https://docs.generatepress.com/article/adding-php/

    #926802
    Paul

    thanks will give it a go

    #926809
    David
    Staff
    Customer Support

    You’re welcome

    #926814
    Paul

    Yeah it seems to have worked
    Many thanks

    #926826
    David
    Staff
    Customer Support

    You’re welcome

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