unaizakhalid
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Neve] Featured Image is being croppedAdding
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 ); }Forum: Themes and Templates
In reply to: [Neve] Featured Image is being croppedHello @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 activatedold images were regenerated with the plugin you provided so those are working fine.
Thank you
Forum: Themes and Templates
In reply to: [Neve] Featured Image is being cropped@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