Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #611496

    Hi all,

    Is there a way to display the Avia Layout Builder by default? So when you create a new page the layout builder shows up instead of having to switch from the default content editor.

    Thanks,

    Leyden

    #611692

    Hi Leyden,

    It should show up by default once you have selected it the first time, so you only have to select it once.

    Regards,
    Rikard

    #683628

    I am having a similar question. How to I enable ALB in the portfolio by default for new portfolio items?

    Thank you,
    Mike

    • This reply was modified 7 years, 7 months ago by Mike.
    #684036

    Hi Mike,

    It should work the same way for portfolio items, you only have to select it once and it should appear automatically after that.

    Thanks,
    Rikard

    #946108

    Hi Kriesi,

    Sorry for bringing up this topic once again but is there any chance the Avia Layout Builder could be turned on by default throughout the whole site? I see no reason why one would not use the ALB but the WP core Visual Editor. So whenever writing a new page / message / etc. the ALB is on by default.

    Thanks for the reply!

    #946111

    Hey Aerdvark, it seems support if hit or miss here, why are you replying to old useless threads, support is a mess.

    #946117

    Hi Patricktech,

    I do not understand your reply.
    To me, Kriesi and the team has always been very helpful.
    So I cannot agree to the mess you mention.

    The reason I reply to an old thread is because it is still open and it says all I want to say.

    Cheers!

    #946122

    I am getting no response or help from support, I am pissed I have bought this theme so many time and hardly ever ask for support.

    #946173

    I also agree that the Kriesi team is always very responsive. I still don’t have this issue with the Avia Layout Builder not loading by default. I always have to switch it when creating new pages. This is an issue for clients who actually love the Avia Builder.

    Also, it would be great to be able to lock the Avia Builder (possible) but keep the ability to load templates. I use saved templates for my clients and don’t want them to mess with other items on the builder. Right now, you can only lock everything.

    Thanks!

    #947197

    Hi,

    Use this script to trigger the advance layout builder when creating a new page. Just add it in the functions.php file

    // make avia default on new posts
    // use #postdivrich_wrap for editor only, #post-body for (pretty much) everything
    // see https://kriesi.at/support/topic/always-open-advanced-layout-builder/#post-452117
    add_action('admin_head-post-new.php', 'trigger_alb_on_load');
    function trigger_alb_on_load(){
    	$screen = get_current_screen();
    	if ( $screen->id != 'page' ) return;
    	echo '<style>#post-body { display: none; }</style>';
    	?>
    	<script>
    		(function($){
    			$(window).load(function() {
    				$("#avia-builder-button").trigger('click');
    				$("#post-body").css('display', 'inherit');
    			});
    		})(jQuery);
    	</script>
    	<?php
    }

    Best regards,
    Ismael

    #955595

    Ismael, this didn’t work for me. As I have to re-create all my Pages thanks to a bug in the Enfold theme could you please make the Aviva Layout Builder a standard part of pages so this onerous process is not necessary?

    #955979

    Hi theepicurienne,

    Please stick to your own thread. I’ll close this for now.

    Best regards,
    Rikard

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘Avia Layout Builder by Default’ is closed to new replies.