-
Home
-
WP Mail Booster: #1 WordPress SMTP Plugin
- Tips
How to Hide the "WP Mail Booster" Admin Menu
function plt_hide_wp_mail_booster_menus() {
//Hide the "WP Mail Booster" menu.
remove_menu_page('wp_mail_booster_wizard');
}
add_action('admin_menu', 'plt_hide_wp_mail_booster_menus', 11);
Where do I put this code?
How to Hide the "Mail Booster Statistics" Dashboard Widget
function plt_hide_wp_mail_booster_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "Mail Booster Statistics" widget.
remove_meta_box('mail_booster_dashboard_widget', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_wp_mail_booster_dashboard_widgets', 20);