-
Home
-
Appointment Booking Calendar — Simply Schedule Appointments Booking Plugin
- Tips
How to Hide Simply Schedule Appointments Admin Menus
function plt_hide_simply_schedule_appointments_menus() {
remove_submenu_page('tools.php', 'action-scheduler');
remove_menu_page('simply-schedule-appointments');
}
add_action('admin_menu', 'plt_hide_simply_schedule_appointments_menus', 11);
Where do I put this code?
How to Hide the "Your Upcoming Appointments" Dashboard Widget
function plt_hide_simply_schedule_appointments_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
remove_meta_box('ssa-dashboard-upcoming-appointments-widget', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_simply_schedule_appointments_dashboard_widgets', 20);