Hi guys –
Just wondering – How can we switch so that the Advanced editor is the default view and the default wordpress editor becomes the secondary choice?
Hi David!
You could try triggering the ALB button on admin pages, try adding this to functions.php:
function trigger_alb_button(){
?>
<script>
(function($){
$(window).load(function() {
$("#avia-builder-button").trigger('click')
});
})(jQuery);
</script>
<?php
}
add_action('admin_footer', 'trigger_alb_button');
Regards,
Josue