I would like to remove screen options and help links in my admin area. How to remove that thing?.
This is what i want to be removed.
Thanks.
I would like to remove screen options and help links in my admin area. How to remove that thing?.
This is what i want to be removed.
Thanks.
You must be logged in to post a comment.
There are several plugins that can do that:
No need to use one or two plugins for such small task…
To remove the Help Tab use
Or
Where the first one is the safe one
And to remove the Screen Options Tab
You can use this on tour functions.php file or as part of a custom plugin.
Copy and save as removetabs.php, upload to your plugins folder and activate.
Edit:
I realize that by using
add_filter('screen_options_show_screen', '__return_false');
you loose any settings previously configured on the “Screen Tab” for example on the dashboard, instead of two columns of widgets you will only get one. To avoid this or if you are experiencing the problem of loosing the settings on the “Screen Tab” you can use this instead:Replace:
add_filter('screen_options_show_screen', '__return_false');
With:
Settings/options saved on the “Screen Tab” will not be lost, and the tab will be gone for the pages on the $blacklist array, You can add more pages to the list or remove the if(in_array statment
Hide specific screen setting (in this case Woocommerce download option).