Tips on Customizing WP Chat App

How to Hide WP Chat App Admin Menus

function plt_hide_wp_whatsapp_menus() {
	//Hide "WhatsApp".
	remove_menu_page('nta_whatsapp');
	//Hide "WhatsApp → All Accounts".
	remove_submenu_page('nta_whatsapp', 'edit.php?post_type=whatsapp-accounts');
	//Hide "WhatsApp → Add New account".
	remove_submenu_page('nta_whatsapp', 'post-new.php?post_type=whatsapp-accounts');
	//Hide "WhatsApp → Floating Widget".
	remove_submenu_page('nta_whatsapp', 'nta_whatsapp_floating_widget');
	//Hide "WhatsApp → Settings".
	remove_submenu_page('nta_whatsapp', 'nta_whatsapp_setting');
	//Hide "WhatsApp → Go Pro".
	remove_submenu_page('nta_whatsapp', 'go_whatsapp_pro');
	//Hide "WhatsApp → Recommended Plugins".
	remove_submenu_page('nta_whatsapp', 'nta_whatsapp_recommended_plugins');
}

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

Where do I put this code?

How to Hide WP Chat App Meta Boxes

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

	//Hide the "WhatsApp Account Information" meta box.
	remove_meta_box('whatsapp-account-info', $screen->id, 'normal');
	//Hide the "Button Style" meta box.
	remove_meta_box('whatsapp-button-style', $screen->id, 'normal');
}

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

How to Hide the "Recommended" Dashboard Widget

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

	//Remove the "Recommended" widget.
	remove_meta_box('dashboard_widget', 'dashboard', 'normal');
}

add_action('wp_dashboard_setup', 'plt_hide_wp_whatsapp_dashboard_widgets', 20);