How to Hide the "Tidio Chat" Admin Menu

function plt_hide_tidio_live_chat_menus() {
	//Hide the "Tidio Chat" menu.
	remove_menu_page('tidio-live-chat');
}

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

Where do I put this code?