Tips on Customizing Five Star Business Profile and Schema

How to Hide Five Star Business Profile and Schema Admin Menus

function plt_hide_business_profile_menus() {
	//Hide "Business Profile".
	remove_menu_page('bpfwp-business-profile');
	//Hide "Business Profile → Dashboard".
	remove_submenu_page('bpfwp-business-profile', 'bpfwp-dashboard');
	//Hide "Business Profile → Schemas".
	remove_submenu_page('bpfwp-business-profile', 'edit.php?post_type=schema');
	//Hide "Business Profile → Settings".
	remove_submenu_page('bpfwp-business-profile', 'bpfwp-settings');
	//Hide "Business Profile → About Us".
	remove_submenu_page('bpfwp-business-profile', 'bpfwp-about-us');
}

add_action('admin_menu', 'plt_hide_business_profile_menus', 100);

Where do I put this code?

How to Hide Five Star Business Profile and Schema Meta Boxes

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

	//Hide the "Schema Type" meta box.
	remove_meta_box('bpfwp_schema_metabox', $screen->id, 'side');
	//Hide the "Contact Details" meta box.
	remove_meta_box('bpfwp_contact_metabox', $screen->id, 'side');
	//Hide the "Opening Hours" meta box.
	remove_meta_box('bpfwp_opening_hours_metabox', $screen->id, 'normal');
	//Hide the "Exceptions" meta box.
	remove_meta_box('bpfwp_exceptions_metabox', $screen->id, 'normal');
	//Hide the "Schema Details" meta box.
	remove_meta_box('bpfwp_schema_targeting_information', $screen->id, 'normal');
}

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