I have the same issue with wordpress 6.7 upgrade and Ashe Theme. Blog post images are smaller than usual. Fix was to downgrade back to wordpress 6.6.2 at the moment.
Thanks, I give it a day, I think a hotfix/new version will probably be released then by Ashe. If not, I will downgrade.
I upgrade to wordpress 6.7 when new ashe theme version is out. π
-
This reply was modified 1 year, 2 months ago by
marxveix.
I have the same problem, since today. Hopefully Ashe will respond.
They will respond and fix, just i do not know how quickly. I hope its soon, i also want to use latest wp.
You are not alone, I have the same problem with twentytwentyfour theme. I know it also got updated to 1.3. I can confirm that WordPress 6.7 broke it since it wasn’t working on theme version 1.2 as well. It is sad, such a big release was not tested with twentytwentyfour theme π
-
This reply was modified 1 year, 2 months ago by
1robin.
Hi @frankruimte @marxveix @bychelise
At first, thank you for choosing our theme and service.
βNew WordPress update brought some changes and it changed thumbnail sizes completely, our development team is working on the solution and we let you know when its fixed.
Before please try to use temporary solution. Please navigate to Dashboard > Appearance > Customize > Additional CSS and add the CSS snippet below:
img {
width: 100% !important;
height: auto !important;
contain: none !important;
contain-intrinsic-size: none !important;
}
Kind Regards
This is what worked for me, I had a plugin that had an advanced image block. I was able to pull the featured image.
Swapped the featured image block (that appeared without any borders on the editor) with the plugins’ image block. Back to business now, will revisit later once WordPress releases a new update.
Hope this helps someone.
The added CSS fixed it for me, thanks!
I will wait on the following release.
Cheers,
Frank
Ashe versioon is latest 2.244 and css added, also fixed for me, thank you supportwpr.
In the future Ashe releases we can remove this css fix?
Thank you for this temporary fix!
The CSS does blow up your author image to full size as well, I will wait until an official fix is released. Thanks for the quick replies everyone.
Where is the author page or author image location for ashe theme or is it pro version feature?
I use simple author box (free version)/images ok https://wordpress.org/plugins/simple-author-box/
This css fix has issue with woocommerce description additional images @ my site.

Using latest wp and latest ashe and waiting future upate, permanent fix, thank you.
Is it possible that the additional CSS also effect other blocks? I noticed that the hand-picked products block (Woocommerce) doesn’t show images anymore. I see the images (thumbnail) in WordPress but not on the frontend. It worked before. Or maybe it is also related to the WordPress update? Hopefully there’s a way to fix this also.
I removed this css
img {
width: 100% !important;
height: auto !important;
contain: none !important;
contain-intrinsic-size: none !important;
}
and added this to my ashe-child functions.php (woocommerce also is back at normal)
add_filter( ‘wp_content_img_tag’, staticfunction ( $image ) { return str_replace( ‘ sizes=”auto, ‘, ‘ sizes=”‘, $image ); } );
add_filter( ‘wp_get_attachment_image_attributes’, staticfunction ( $attr ) { if ( isset( $attr[‘sizes’] ) ) { $attr[‘sizes’] = preg_replace( ‘/^auto, /’, ”, $attr[‘sizes’] ); } return $attr; } );
https://core.trac.wordpress.org/ticket/61847#comment:23