-
AuthorPosts
-
December 13, 2017 at 12:39 pm #888290
Hi,
I really need to remove avia builder but there is no way to turn it off. The system simply doesn’t work. The columns do not constrain proportions and the page ends up looking a mess.
I would rather use divi builder or visual composer as these seem to work but avia interferes with themDecember 13, 2017 at 4:20 pm #888415Hey richv100,
Here is an article for you to consider
If you need further assistance please let us know.
Best regards,
VictoriaJuly 29, 2018 at 11:29 pm #991329I wish to remove the Avia builder altogether. I use WPBakery for my pages and the resulting code is a mess with av and vc codes.
How can I remove it?
July 30, 2018 at 2:37 am #991351Hi,
Sorry you can’t completely remove the advanced layout builder as it is built into the theme, but you can hide the ALB button and editor with this code to the end of your functions.php file in Appearance > Editor:function remove_alb() { ?> <style>#avia_builder { display: none !important; } #avia-builder-button { display: none !important; }</style> <?php } add_action( 'init', 'remove_alb');
Best regards,
MikeJuly 30, 2018 at 4:41 am #991366Mike,
Thank you for your quick reply. I understand that Avia is part of the theme. I’ve noticed that there are content items with the “av-” prefix on them. I assume those are from Avia. If I hide the button and consequently don’t use the Advanced Layout Builder, will I still have those items in my pages and posts?
Thank you for your response. I do very much like the Enfold theme.
July 30, 2018 at 7:10 am #991413Hi,
Some theme specific classes will still be in your content yes, but if you don’t use the builder for your content then there won’t be any theme elements in there.
Best regards,
RikardFebruary 8, 2022 at 2:02 am #1339480We need to migrate a client’s content currently on Enfold theme to a multisite for their franchise which uses another theme. If we export the content and import it, it is full of coding text. Is there a better way to remove this before exporting/importing the content to a new theme? All pages were built with the advanced layout editor.
February 8, 2022 at 9:32 am #1339543Hi risestrategic,
Everything which is built using the Enfold layout builder will be in theme specific shortcode, so you can’t export layouts to other themes unfortunately.
Best regards,
RikardOctober 8, 2024 at 10:50 am #1468639Hi
Could this code be adapted so that the ALB button is only hidden on Woocomerce admin page but not on admin pages for ordinary pages and posts?
Regards
ColinOctober 8, 2024 at 5:47 pm #1468660Hi,
Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function remove_alb() { ?> <style>.woocommerce-admin-page #avia_builder { display: none !important; } .woocommerce-admin-page #avia-builder-button { display: none !important; }</style> <?php } add_action( 'init', 'remove_alb');
Best regards,
MikeOctober 8, 2024 at 8:37 pm #1468676Hi Mike
That’s perfect. Thanks you !
Regards
ColinOctober 9, 2024 at 5:24 am #1468684 -
AuthorPosts
- The topic ‘How To Remove Avia Builder’ is closed to new replies.