How to Hide the "Chat and Forms" Admin Menu

function plt_hide_chat_and_forms_integration_for_okocrm_menus() {
	//Hide the "Chat and Forms" menu.
	remove_menu_page('cfio');
}

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

Where do I put this code?