-
Home
-
Website Pop-up Builder by BDOW! (formerly Sumo): Pop-ups + forms for email opt-ins and lead generation
- Tips
How to Hide SumoMe Admin Menus
function plt_hide_sumome_menus() {
//Hide the "Sumo" menu.
remove_menu_page('sumo');
//Hide the "Sumo → Sumo" menu.
remove_submenu_page('sumo', 'sumo');
//Hide the "Sumo → SiteID" menu.
remove_submenu_page('sumo', 'sumo-siteID');
}
add_action('admin_menu', 'plt_hide_sumome_menus', 11);
Where do I put this code?
How to Hide SumoMe Dashboard Widgets
function plt_hide_sumome_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "" widget.
remove_meta_box('my_dashboard_widget', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_sumome_dashboard_widgets', 20);