Hi at all,
after updating to WP version 5.0 last month I am fighting with several problems…. The biggest one: I am not able to edit existing pages anymore.
I am using the Avia Layout Architect. When I enter in existing text elements for working in the content, the element preview is empty and shows following notification: “It seems you are currently adding some HTML markup or other special characters. Once all HTML tags are closed the preview will be available again. If this message persists please check your input for special characters and try to remove them.”
Hey Annisiba,
Please try to disable the Gutenberg editor using this in 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