Reputation: 129
i'm using wpbakery plugin to build web pages. Yesterday i found that i wasn’t able to edit any pages or posts. Page builder is giving me a blank white screen with wpbakery logo on every single page or post I try to edit. If I disable page builder then I can not edit then none of my page builder pages work correctly. What can I do to get page builder working again?
Upvotes: 1
Views: 6820
Reputation: 49
This looks like a problem of a compatibility issue between the WP Bakery live editor and new WordPress Guttenberg editor. To solve the problem you can:
1 - Add this snippet in your code.
add_filter('use_block_editor_for_post', false, 10);
add_filter('use_block_editor_for_post_type', false, 10);
2 - Install Classic editor plugin via your WordPress Dashboard.
Upvotes: 3