I find that all my websites, if they update to WP 6.9, the form layout is broken. I find that the honeypot field will show up, layout broken, and look like /wp-content/plugins/gravityforms/assets/css/dist/basic.min.css is not loading.
I’m unable to replicate this issue on my test sites. Have you tried clearing your browser cache and the caches of any caching/optimization plugins/services your site could be using?
Jetpack Scan is able to automatically fix this threat for you. Since it will replace the affected file or directory the site’s look-and-feel or features can be compromised. We recommend that you check if your latest backup was performed successfully in case a restore is needed.
Jetpack Scan will delete the affected file or directory.
Can someone please send or post a link to the version that worked BEFORE this!!
2.9.23.1 is available from your support account downloads page for manual installation. The next auto-update release will be 2.9.24, which is currently scheduled for release next week.
COME ON MAN! THIS IS NUTS!!! PLEASE POST THE PREVIOUS VERSION OF THE PLUGIN!!! IT IS CAUSING PROBLEMS JUST LIKE YOUR PAYPAL CHECKOUT 4.0.0 WHICH YOU NEVER ADDRESSED in weeks now. HOLY CRAP. POST A LINK TO THE LAST GF BEFORE THIS BUGGY UPDATE!!!
I also have this issue and disabling Yoast resolves it, but obviously I need Yoast active for SEO! I have contacted Yoast support with an example URL and also this thread, so I hope they get it sorted soon, but at least they’re now aware.
If you’re inserting forms through the block editor, I would try adding this to your functions file. It solved a number of issues for me due to WP 6.9 loading block assets differently.
/**
* TEMP FIX for WordPress 6.9 block CSS loading issues.
* Forces WordPress to load ALL block styles (like pre-6.9 behavior).
*/
add_action(
'after_setup_theme',
function () {
add_filter( 'should_load_separate_core_block_assets', '__return_false' );
}
);