Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #759229

    Hi,

    When editing a post and then switching to Advanced Layout Editor and then trying to switch back to Default Editor, I lose all the content of the post (in Default Editor view).

    Why does it do this and how can I get the content back in Default Editor view?

    Thanks,

    Frank

    #759454

    Hey franktw,
    You are not suppose to see the ALE code, or text, in the default editor. But you can if you enable debug mode. Please refer to this post: https://kriesi.at/support/topic/switching-between-advanced-layout-editor-and-default-editor-stopped-working/#post-133572

    Best regards,
    Mike

    #760190

    What happens if an editor accidentally presses the ALE button on a post? Is there any way to prevent this? It’s causing some confusion since they can’t go back.

    Thanks.

    #760302

    Hey!

    They can press the ALE button again and the editor will be disabled!
    Let us know if you try that.

    Best regards,
    Basilis

    #760315

    Yes, but when they click it again, the content is gone. That’s the problem. Pressing the ALE button put all the content into a special mode that you can’t recover from. There needs to be a way to either recover the content or disable that button so editors don’t press it.

    #760836

    Is there a way to hide the ALE button from the Post Editor interface?

    #761144

    Hi,

    Try to add this code at the bottom of functions.php:

    add_action('admin_head', 'my_custom_code');
    
    function my_custom_code() {
      echo '<style>
        #poststuff #avia-builder-button {
          display: none;
        }
      </style>';
    }

    Hope this helps.

    Best regards,
    Nikko

    #762541

    Thanks!

    #762851

    Hi!

    Glad we could help :)

    Best regards,
    Nikko

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