Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1051400

    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.”

    #1051699

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.