How to Hide the "Chat Button" Admin Menu

function plt_hide_amin_chat_button_menus() {
	//Hide the "Chat Button" menu.
	remove_menu_page('amin-chat-button-settings');
}

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

Where do I put this code?