Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #722572

    Hi,

    Is it possible to hide the ‘Theme Options’ from Top Admin Bar?

    Many thanks!

    Love your work!

    #722969

    Hey Lol5tar,

    Please try this in your child themes functions.php file:

    function remove_avia_theme_options_admin_bar() { 
    ?>
    <style>
    li#wp-admin-bar-avia {
      display:none !important;
    }
    </style>
    <?php
    } 
    add_action( 'init', 'remove_avia_theme_options_admin_bar');

    Best regards,
    Rikard

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