1

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?

marie
  • 129
  • 1
  • 3
  • 10

1 Answers1

3

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.

hamlet237
  • 41
  • 4
  • 1
    This almost works. I can see part of the page now, but still the logo and white screen is on top of the page. Is there another wordpress filter that can be used to fix this issue? – Akalonda Dec 22 '20 at 08:27
  • Maybe you´re working with custom post types. Then you can visit this link https://stackoverflow.com/questions/52199629/how-to-disable-gutenberg-block-editor-for-certain-post-types and check filter. – hamlet237 Dec 23 '20 at 23:18