skip to Main Content

I have a site built on Divi Buider already. But, after updating my WordPress version to 5.0.2 Divi Builder plugin stopped working on frontend and also on dashboard (on Edit Page). My Divi Builder plugin version is also updated (version 2.19.4).

I think it may happen because of conflicting with Guterberg. I tried to disable Gutenberg by installing plugins like “Disable Gutenberg” or “Classic Editor”. Those show Divi Editor on Dashboard (edit page) again, but, Divi Buider on frontend it’s still loading forever…

2

Answers


  1. Add this line in function.php, it will help you to disable Gutenberg, after that your divi builder will work perfectly.

    add_filter(‘use_block_editor_for_post’, ‘__return_false’);

    Login or Signup to reply.
  2. if adding below code mentioned by @oovii.alee didnt work

    add_filter(‘use_block_editor_for_post’, ‘__return_false’);

    try adding this plugin

    https://wordpress.org/plugins/classic-editor/

    and then change settings in settings->writting

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search