Hi
I am running Enfold.
When I try to add a new page, it defaults to Block WP page builder and I can no longer see the Advanced Layout Builder as an option.
Is there a way I can use the Advanced Layout Builder as a default?
Thanks
First On Theme Options you find at the bottom: “Select Your Editor” – choose the classic editor
Next if you like to see at start the advanced builder editor you can add this to your child-theme functions.php:
function trigger_alb_on_load(){
?>
<script>
(function($){
$(window).on('load', function(){
setTimeout(function() {
$("#avia-builder-button").trigger('click');
}, 300);
});
})(jQuery);
</script>
<?php
}
add_action('admin_head-post-new.php', 'trigger_alb_on_load');
Hi,
Thank you for the inquiry.
There is no default option for this, but you can try @Guenni007’s script above to automatically switch to ALB when creating or updating a page
Best regards,
Ismael