-
Home
-
Potentially – helps you gain new customers
- Tips
How to Hide the "Potentially" Admin Menu
function plt_hide_potentially_menus() {
//Hide the "Potentially" menu.
remove_menu_page('oc-potentially');
}
add_action('admin_menu', 'plt_hide_potentially_menus', 11);
Where do I put this code?
How to Hide the "Potentially" Dashboard Widget
function plt_hide_potentially_dashboard_widgets() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Remove the "Potentially" widget.
remove_meta_box('oc-potentially-dashboard-widget', 'dashboard', 'normal');
}
add_action('wp_dashboard_setup', 'plt_hide_potentially_dashboard_widgets', 20);