How to Hide the "WooCommerce Grid" Admin Menu

function plt_hide_wct_woocommerce_responsive_grid_menus() {
	//Hide the "WooCommerce Grid" menu.
	remove_menu_page('wct-woocommerce-responsive-grid/index.php');
}

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

Where do I put this code?