Hello,
We took over a website that was built with the Enfold theme. We noticed some issues with the pagebuilder not working properly and contact form emails not being received.
Upon looking into the problems I noticed that we were using Enfold 4.0.7 on the latest version of WordPress. So we have purchased the Enfold theme and uploaded version 4.5.1 via ftp.
However even after updating the theme when I update a page using the advanced layout builder it doesn’t save any changes made. Strangely if I make some changes in the pagebuilder and then click on default editor to go into that mode and then click it again to come out the changes will then save.
Any suggestions?
Thanks, Jamie
Hi Jamie,
Sorry for the problem, it’s likely due to the new block editor in WordPress 5. If you update to the latest version of the theme (4.5.4) then you will have an option to use the Classic Editor in the main page of the theme options. If you don’t want to update then you can disable it by adding this to your functions.php file:
// disable for posts
add_filter('use_block_editor_for_post', '__return_false', 10);
// disable for post types
add_filter('use_block_editor_for_post_type', '__return_false', 10);
Best regards,
Rikard
