Join us next year for an unforgettable wine cruise through Paris and Normandy (click to learn more)

Add Quantity Field On Shop Page for WooCommerce

/** * Add Quantity Field On Shop Page for WooCommerce. */ function custom_quantity_field_archive() { $product = wc_get_product( get_the_ID() ); if ( ! $product->is_sold_individually() && ‘variable’ != $product->product_type && $product->is_purchasable() ) { woocommerce_quantity_input( array( ‘min_value’ => 1, ‘max_value’ => $product->backorders_allowed() ? ” : $product->get_stock_quantity() ) ); } } add_action( ‘woocommerce_after_shop_loop_item’, ‘custom_quantity_field_archive’, 15, 9 ); function custom_add_to_cart_quantity_handler() […]

Skip to content