• Resolved ricokombucha

    (@ricokombucha)


    Hi guys,

    I truly love the Neve theme but unfortunately the pictures in my product catalogue are blurry.

    I tries switching of JetPack, resizing, etc.. but without any success.

    Any tips or solutions would be great!

    What is the standard thumbnail size Neve is using?

    Thanks in advance!

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

Viewing 6 replies - 1 through 6 (of 6 total)
  • Thread Starter ricokombucha

    (@ricokombucha)

    Oh yes, the pictures a perfect on a mobile phone, but blurry on a desktop/laptop.

    Hi,

    Do you still have this issue? For me, the images are not blurry neither on Desktop or on mobile.

    Regards,
    Rodica

    Hi,

    I have the same issue.

    Images are blurry on Catalogue/category pages.

    Have you already solved the problem?

    Thanks!

    For me, images are blurry everywhere. When I upload an image into my full-width banner image container, it comes out duller and blurrier than the original, when displayed. Neve theme is distorting it horribly. On mobile it doesn’t resize so it looks even worse. Unpublishable. Please can someone help?

    Same issue for me, on mobile only.

    Hi there,

    There is an image size declared in the theme for the product thumbnails and product featured image. You can try changing them, as follows.

    First, you can download a child theme for Neve from this guide, then add the following code at the end of the functions.php file within the child theme.

    function neve_change_product_thumbnail_size() {
    
    	$woocommerce_settings = array(
    		'single_image_width'            => 600,
    		'thumbnail_image_width'         => 230,
    		'gallery_thumbnail_image_width' => 160,
    		'product_grid'                  => array(
    			'default_columns' => 3,
    			'default_rows'    => 4,
    			'min_columns'     => 1,
    			'max_columns'     => 6,
    			'min_rows'        => 1,
    		),
    	);
    
    	return $woocommerce_settings;
    }
    add_filter( 'neves_woocommerce_args', 'neve_change_product_thumbnail_size' );

    The value of 600 is for the featured image and the value of 230 is for the products’ archive pages. Feel free to change those values then use a plugin to regenerate the thumbnails.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Blurry pictures’ is closed to new replies.