Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Shellbot

    (@shellbot)

    Could you provide a link to your site? I’ll take a look at what’s going on there.

    Thread Starter deco2015

    (@deco2015)

    Thank you for getting back to me and sorry for the late response. I was able to get it to work after regenerating image sizes a second time. Thank you for this great plugin!!

    Plugin Author Shellbot

    (@shellbot)

    Oh excellent, thanks for the update. Glad you find it useful 🙂

    My images were also blurry and regenerating thumbnails did not help.

    Turns out the plugin is using the thumbnail size image, which in my theme is really small. So in line 99 of the plugin I told it to use the category image instead, changing

    echo get_the_post_thumbnail( $product[0]->ID, 'shop_thumbnail' );

    to

    echo get_the_post_thumbnail( $product[0]->ID, 'shop_catalog' );

    This solved it for me, using a larger image.

    Dear Cherka, you mentioned “line 99 of the plugin”. What is the name of the plugin? what files you have edited?

    Hi,

    Not sure if it’s a problem with the current version of WP (a change in the keyword?), but with 4.5 it looks like a typo:

    echo get_the_post_thumbnail( $product[0]->ID, 'post_thumbnail' );

    The above shows resized original images, not the thumbnails.

    After changing the _ to – the thumbnails have correct sizes:

    echo get_the_post_thumbnail( $product[0]->ID, 'post-thumbnail' );

    Cheers,

    Tom

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Category Thumbnails are blurry’ is closed to new replies.