How to Hide the "Zendesk Chat" Admin Menu

function plt_hide_zopim_live_chat_menus() {
	//Hide the "Zendesk Chat" menu.
	remove_menu_page('zopim_account_config');
}

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

Where do I put this code?