-
Home
-
LightStart – Maintenance Mode, Coming Soon and Landing Page Builder
- Tips
How to Hide LightStart - Maintenance Mode, Coming Soon and Landing Page Builder Admin Menus
function plt_hide_wp_maintenance_mode_menus() {
//Hide the "LightStart" menu.
remove_menu_page('wp-maintenance-mode');
//Hide the "LightStart → LightStart" menu.
remove_submenu_page('wp-maintenance-mode', 'wp-maintenance-mode');
//Hide the "LightStart → About Us" menu.
remove_submenu_page('wp-maintenance-mode', 'ti-about-wp_maintenance_mode');
}
add_action('admin_menu', 'plt_hide_wp_maintenance_mode_menus', 11);
Where do I put this code?
How to Hide the "WordPress Guides/Tutorials" Dashboard Widget
function plt_hide_wp_maintenance_mode_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "WordPress Guides/Tutorials" widget.
remove_meta_box('themeisle', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_wp_maintenance_mode_dashboard_widgets', 20);