Tagged: content, Layout Builder, updates
-
AuthorPosts
-
April 11, 2016 at 6:42 pm #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
April 12, 2016 at 6:52 am #611692Hi Leyden,
It should show up by default once you have selected it the first time, so you only have to select it once.
Regards,
RikardSeptember 8, 2016 at 11:50 am #683628I 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 8 years, 2 months ago by Mike.
September 9, 2016 at 7:31 am #684036Hi 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,
RikardApril 24, 2018 at 7:51 pm #946108Hi 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!
April 24, 2018 at 7:55 pm #946111Hey Aerdvark, it seems support if hit or miss here, why are you replying to old useless threads, support is a mess.
April 24, 2018 at 8:01 pm #946117Hi 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!
April 24, 2018 at 8:06 pm #946122I 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.
April 24, 2018 at 8:37 pm #946173I 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!
April 26, 2018 at 11:15 am #947197Hi,
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,
IsmaelMay 12, 2018 at 8:18 am #955595Ismael, 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?
- This reply was modified 6 years, 6 months ago by theepicurienne.
May 13, 2018 at 8:14 am #955979 -
AuthorPosts
- The topic ‘Avia Layout Builder by Default’ is closed to new replies.