Testing Suspended

Testing of this plugin has been temporarily suspended due to an error. It will automatically resume when a new plugin version is released.

Tips on Customizing EP Pushcrew (now VWO Engage)

How to Hide the "EP PushCrew" Admin Menu

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);

Where do I put this code?

How to Hide the "Exclude Pushcrew(VWO Engage)" Meta Box

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);