Tips on Customizing Raptive Ads

How to Hide the "Raptive Ads" Admin Menu

function plt_hide_adthrive_ads_menus() {
	//Hide the "Raptive Ads" menu.
	remove_menu_page('adthrive');
}

add_action('admin_menu', 'plt_hide_adthrive_ads_menus', 21);

Where do I put this code?

How to Hide the "Raptive Ads" Meta Box

function plt_hide_adthrive_ads_metaboxes() {
	$screen = get_current_screen();
	if ( !$screen ) {
		return;
	}

	//Hide the "Raptive Ads" meta box.
	remove_meta_box('adthrive_ads_object_metabox', $screen->id, 'normal');
}

add_action('add_meta_boxes', 'plt_hide_adthrive_ads_metaboxes', 20);