Tips on Customizing Marketing Automation

How to Hide the "Vbout Settings" Admin Menu

function plt_hide_marketing_automation_menus() {
	//Hide the "Vbout Settings" menu.
	remove_menu_page('vbout-connect');
}

add_action('admin_menu', 'plt_hide_marketing_automation_menus', 11);

Where do I put this code?

How to Hide the "Schedule this Post on Vbout?" Meta Box

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

	//Hide the "Schedule this Post on Vbout?" meta box.
	remove_meta_box('vbou_meta_box', $screen->id, 'normal');
}

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