Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
    Posts
  • #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 them

    #888415

    Hey richv100,

    Here is an article for you to consider

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #991329

    I 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?

    #991351

    Hi,
    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,
    Mike

    #991366

    Mike,

    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.

    #991413

    Hi,

    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,
    Rikard

    #1339480

    We 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.

    #1339543

    Hi 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,
    Rikard

    #1468639

    Hi

    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
    Colin

    #1468660

    Hi,
    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,
    Mike

    #1468676

    Hi Mike

    That’s perfect. Thanks you !

    Regards
    Colin

    #1468684

    Hi,

    Glad it worked! Please feel free to open another thread if you have more questions about the theme.

    Have a nice day.

    Best regards,
    Ismael

Viewing 12 posts - 1 through 12 (of 12 total)
  • The topic ‘How To Remove Avia Builder’ is closed to new replies.