It is Possible to hide the THEME OPTIONS PANEL FROM DASHBOARD? :) … I mean, all this section (Theme Options) … to be invisible.
Thank You
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
Thank You :) … great
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.
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
Thanks