-
Home
-
Sell Ads Plugin – Sell Ad Space as Monthly Subscription
- Tips
How to Hide Sell Ads Plugin - Sell Ad Space as Monthly Subscription Admin Menus
function plt_hide_sell_ads_menus() {
//Hide "Sell Ad Space".
remove_menu_page('sell-my-adspace');
//Hide "Sell Ad Space → Campaigns".
remove_submenu_page('sell-my-adspace', 'edit.php?post_type=ads_campaign');
//Hide "Sell Ad Space → Orders".
remove_submenu_page('sell-my-adspace', 'edit.php?post_type=ads_order');
//Hide "Sell Ad Space → Settings".
remove_submenu_page('sell-my-adspace', 'sell-my-adspace');
}
add_action('admin_menu', 'plt_hide_sell_ads_menus', 11);
Where do I put this code?
How to Hide the "Campaign Information" Meta Box
function plt_hide_sell_ads_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Campaign Information" meta box.
remove_meta_box('campaign_metaboxes', $screen->id, 'normal');
}
add_action('add_meta_boxes', 'plt_hide_sell_ads_metaboxes', 20);