Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #787119

    Hi, I searched the forum and found some of this question. It’s a lil bit hit and miss, every answer is different.

    I already finished building the site using the advance layout builder.
    What I wanted now is to hide it, so that no new stuff will be added by accident by other admins.

    If I hide the advance layout builder, will I still be able to edit the existing contents that are made using the layout builder of my site?

    Attached Image Reference

    • This topic was modified 7 years, 6 months ago by intense. Reason: Attached image
    #787123

    Hey intense,

    You can go to Enfold theme options and check “Lock advanced layout builder” :)

    Best regards,
    Yigit

    #787125

    Hi Yigit,

    Thank you for the quick response.
    If I lock the advance layout builder in the theme options, how can I now hide the enfold theme options?

    Thanks!

    #787128

    There’s a problem Yigit.

    “Lock advance layout builder” in the theme options lets admin still edit and see it.
    I want to totally hide the Advance Layout Builder to everyone including the admins. Only me, should be able to hide/unhide it if needed.

    is there a quick css or child theme function for it?

    #787134

    Hi,

    Please add following code to Functions.php file in Appearance > Editor

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

    Best regards,
    Yigit

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