Hi there,
That’s the default image size for the blog page. You can update that size by following this doc, to match the size that you need https://prnt.sc/qp47g5
https://docs.themeisle.com/article/852-how-to-change-blog-image-size-in-hestia
Regards,
Rodica
@rodicaelena thank you for the help, although this is a great solution but the plugin in question is outdated for 8 months! Is there another option for this?
I have used that one for now, but it is advised not to keep outdated plugin on site, so I’d really like it either to be updated or have another option.
Thank you again so much!
Unaiza
Hi @unaizakhalid,
You are right about the plugin being outdated. That’s why I’ve added a new way of changing the image size in the doc, using a child theme. Let me know if you find that useful.
https://docs.themeisle.com/article/852-how-to-change-blog-image-size-in-hestia
Regards,
Rodica
Hello @rodicaelena ,
Thank you for the solution, the solution worked fine until I uploaded a new blog post image. The image for cropped again!
As a recap, I created a child theme and placed the code on your blog to functions.php .
The child theme is activated
old images were regenerated with the plugin you provided so those are working fine.
Thank you
Adding add_theme_support( 'post-thumbnails' ); somehow worked finally!
So my final code was:
add_action( 'after_setup_theme', 'my_child_theme_image_size', 11 );
function my_child_theme_image_size() {
add_theme_support( 'neve-blog' );
remove_image_size( 'neve-blog' );
add_image_size( 'neve-blog', 150, 150, true );
}
Adding add_theme_support( ‘post-thumbnails’ ); somehow worked finally!
Same here. I could not get it to work following the tutorial, not until I read this and followed your suggestion to insert add_theme_support. I even tried turning off all plugins, caching, etc.
Thank you, @unaizakhalid, for sharing this bit of info. 😊
Many thanks @unaizakhalid, your code is working great 😊
Best wishes and stay healthy,
Bettina
Thanks a lot @unaizakhalid
The code from Neve documentation did not work. Your’s did.