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

    It is Possible to hide the THEME OPTIONS PANEL FROM DASHBOARD? :) … I mean, all this section (Theme Options) … to be invisible.
    Thank You

    #570156

    Hi teotaban!

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

    function remove_adminbar_themeoptions() {
    ?><style>li.toplevel_page_avia { display: none !important; }</style>
    <?php
            }
    add_action('init', 'remove_adminbar_themeoptions');

    Cheers!
    Yigit

    #570168

    Thank You :) … great

    #570173

    Thanks for the answer … the theme options disappear from left dashboard menu but I still have the dashboard admin top bar…it´s possible to hide it here too?
    Thank You.

    #570184

    Hey!

    Please change the code to following one

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

    Best regards,
    Yigit

    #570195

    Thanks

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Theme Options Panel – HIDE ALL’ is closed to new replies.