How to Hide the "Chative Live chat" Admin Menu

function plt_hide_chative_live_chat_and_chatbot_menus() {
	//Hide the "Chative Live chat" menu.
	remove_menu_page('chative');
}

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

Where do I put this code?