How to Hide the "Ajax Cart AutoUpdate" Admin Menu

function plt_hide_ajax_cart_autoupdate_for_woocommerce_menus() {
	//Hide the "Settings → Ajax Cart AutoUpdate" menu.
	remove_submenu_page('options-general.php', 'ajax-cart-autoupdate');
}

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

Where do I put this code?