Tagged: advanced-layout-editor
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
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
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.
Hey!
They can press the ALE button again and the editor will be disabled!
Let us know if you try that.
Best regards,
Basilis
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.
Is there a way to hide the ALE button from the Post Editor interface?
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
Thanks!
Hi!
Glad we could help :)
Best regards,
Nikko