-
Home
-
Team Members Showcase
- Tips
How to Hide WPS Team Admin Menus
function plt_hide_wps_team_menus() {
//Hide the "Team" menu.
remove_menu_page('wps-team');
}
add_action('admin_menu', 'plt_hide_wps_team_menus', 1000000000);
Where do I put this code?
How to Hide WPS Team Meta Boxes
function plt_hide_wps_team_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Member's Details" meta box.
remove_meta_box('member-details', $screen->id, 'advanced');
//Hide the "Member's Gallery" meta box.
remove_meta_box('member-gallery', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_wps_team_metaboxes', 20);