How to Hide WhatsButton - Leads and Order over Chat Admin Menus

function plt_hide_order_on_chat_for_woocommerce_menus() {
	//Hide the "Settings → WhatsApp Button" menu.
	remove_submenu_page('options-general.php', 'mvvwo_admin_ui');
	//Hide the "Settings → Support Forum" menu.
	remove_submenu_page('options-general.php', 'mvvwo_admin_ui-wp-support-forum');
	//Hide the "Settings → Upgrade" menu.
	remove_submenu_page('options-general.php', 'mvvwo_admin_ui-pricing');
}

add_action('admin_menu', 'plt_hide_order_on_chat_for_woocommerce_menus', 1000000000);

Where do I put this code?