Jeslen Bucci
Forum Replies Created
-
Forum: Plugins
In reply to: [Timely All-in-One Events Calendar] WHAT???????????There’s a caching error breaking the plugin.
Refused to apply style from 'https://www.****.com/wp-content/plugins/all-in-one-event-calendar/cache/070f5d7b_ai1ec_parsed_css.css?ver=3.0.0' because its MIME type ('text/html') is not a supported stylesheet MIME type, and strict MIME checking is enabled.I’ve enabled the option in the advanced settings to link the CSS in the head, but it’s not fixing the error.
Please advise.
Forum: Themes and Templates
In reply to: [Twenty Ten] Problems with images after upgrade to WordPress 5.5This shouldn’t be regarded as a real fix because it prevents all height attributes on images being used, but it will fix the majority of problems. It’s not a bug that image height attributes affect the height of an image.
Forum: Themes and Templates
In reply to: [Twenty Ten] Problems with images after upgrade to WordPress 5.5I submitted a bug for this here https://core.trac.ww.wp.xz.cn/ticket/50909
I tried to make a detailed answer here for how to sort of fix it for most cases https://core.trac.ww.wp.xz.cn/ticket/50909#comment:14
Forum: Fixing WordPress
In reply to: Image Height issue after WordPress 5.5Please note that using this CSS is going to override all images that had the height attribute set, as mentioned in my post on the support ticket. Specifically, any images added in Gutenburg that had the height altered via the Image dimensions setting will be overridden by implementing this “fix”.
One quick way to overcome this would be to also add this style in your CSS
.wp-block-image img { height: unset; }. But this is also wrong because it will reverse the “fix” on any image that didn’t already have the height set (the first problem returns). You’ll be required to manually update the height for each image in all of your posts.Best of luck.