Site logo

Archived topic

woo thumbnail mages blurry on single product page but fine on catalogue page

5 replies · Started by Paul on June 12, 2019

Viewing posts 1–6 of 6

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

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/

thanks will give it a go

You're welcome

Yeah it seems to have worked
Many thanks

You're welcome

This archived topic is closed to new replies.