Testing of this plugin has been temporarily suspended due to an error. It will automatically resume when a new plugin version is released.
function plt_hide_ep_pushcrew_now_vwo_engage_menus() {
//Hide the "Settings → EP PushCrew" menu.
remove_submenu_page('options-general.php', 'eppc_pushcrew_options');
}
add_action('admin_menu', 'plt_hide_ep_pushcrew_now_vwo_engage_menus', 11);
function plt_hide_ep_pushcrew_now_vwo_engage_metaboxes() {
$screen = get_current_screen();
if ( !$screen ) {
return;
}
//Hide the "Exclude Pushcrew(VWO Engage)" meta box.
remove_meta_box('eppc_pushcrew_metabox', $screen->id, 'side');
}
add_action('add_meta_boxes', 'plt_hide_ep_pushcrew_now_vwo_engage_metaboxes', 20);