Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #265297

    Hi,

    I need to desactivate the Avia Theme Builder. All i want it’s juste the code that’s inside de wp_content
    in the wordpress administration.

    That’s possible ?

    Thanks

    • This topic was modified 10 years, 6 months ago by antoinebro.
    #265667

    Hey!

    You can switch to Default Editor http://i.imgur.com/ERMr9Ha.jpg

    Cheers!
    Josue

    #265737

    Yes i know but i want to do more than that I want to desactivate it completely.

    Or do you know some css classes to edit (display : none) to hide the template builder ?

    #265929

    Hey!

    Open /config-templatebuilder/avia-template-builder/assets/css/avia-builder.css and add this:

    a#avia-builder-button {
        display: none;
    }

    Cheers!
    Josue

    #769391

    Hi, it’s possible to make this in functions.php on a child theme?

    #769402

    Hi,

    Please add following code to functions.php file of your child theme in Appearance > Editor

    function av_hide_alb() {
      echo '<style>a#avia-builder-button {
        display: none;
    }</style>';
    }
    add_action('admin_head', 'av_hide_alb');

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.