-
Home
-
Ultimate Colors
- Tips
How to Hide the "Ultimate Colors" Admin Menu
function plt_hide_ultimate_colors_menus() {
//Hide the "Ultimate Colors" menu.
remove_menu_page('ultimate-colors');
}
add_action('admin_menu', 'plt_hide_ultimate_colors_menus', 11);
Where do I put this code?
How to Hide the "GretaThemes News and Tutorials" Dashboard Widget
function plt_hide_ultimate_colors_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "GretaThemes News and Tutorials" widget.
remove_meta_box('ultimate-colors_dashboard_widget', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_ultimate_colors_dashboard_widgets', 20);