-
Home
-
Post SMTP – Complete Email Deliverability and SMTP Solution with Email Logs, Alerts, Backup SMTP & Mobile App
- Tips
How to Hide the "Post SMTP" Admin Menu
function plt_hide_post_smtp_menus() {
//Hide the "Post SMTP" menu.
remove_menu_page('postman');
}
add_action('admin_menu', 'plt_hide_post_smtp_menus', 1000000000);
Where do I put this code?
How to Hide Post SMTP Dashboard Widgets
function plt_hide_post_smtp_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "Postman SMTP" widget.
remove_meta_box('example_dashboard_widget', 'dashboard', 'normal');
//Remove the "Postman SMTP Stats" widget.
remove_meta_box('post_smtp_reports_widget_lite', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_post_smtp_dashboard_widgets', 20);