-
Home
-
MoohPay™
- Tips
How to Hide the "MoohPay™" Admin Menu
function plt_hide_moohpay_menus() {
//Hide the "MoohPay™" menu.
remove_menu_page('moohpay');
}
add_action('admin_menu', 'plt_hide_moohpay_menus', 11);
Where do I put this code?
How to Hide the "MoohPay™ Premium Page" Meta Box
function plt_hide_moohpay_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "MoohPay™ Premium Page" meta box.
remove_meta_box('moohpay-meta-box', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_moohpay_metaboxes', 20);