Archived topic
WordPress 6.1 Manual Fixes
2 replies · Started by Ian on March 21, 2023
After waiting patiently since Nov for WordPress core to fix the bugs, I figured I would check here to see what we can do to fix things manually. Various GP Staff has chimed in on custom fixes for things that broke in 6.1 to 6.1.1. Let me get this started. Please add what else broke, maybe we can help each other be proactive here.
1. Gallery Broken if you use an optimization plugin. Causes Columned Galleries to be stacked as 1 column. Fix:
body .is-layout-flex {
display: flex;
flex-wrap: wrap
}
Reference: https://generatepress.com/forums/topic/gallery-problems-after-update-to-wp-6-1/#post-2398076
2. Images in posts have lost bottom margin. Fix with:
figure img {
margin-bottom: 30px;
}
or
figure {
margin-bottom: 30px;
}
Reference: https://generatepress.com/forums/topic/no-spacing-beneath-images-in-a-post/
Feel free to add more.
Thank you for sharing these, Ian!
You are welcome Fernando. Great community here and hopefully, others are also tired of waiting for the Core team to fix these annoying glitches.