How to Hide the "Melu Live Chat" Admin Menu

function plt_hide_melu_live_chat_menus() {
	//Hide the "Melu Live Chat" menu.
	remove_menu_page('MeluLiveChat_PluginSettings');
}

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

Where do I put this code?