Hello,
I’m building a Shopify store where, by business requirement, every single product (or unit of a product) in a customer’s cart must become its own Shopify order —complete with its own order number, fulfillment record, tracking link, invoice email, etc.
1. Current behavior
- When a customer adds two T-shirts (or any two distinct products) and checks out, Shopify creates one order (e.g.
#1001
) containing a single line-item withquantity: 2
(or two separate line items if they’re different SKUs). - All fulfillment, tracking, notifications, and reporting are grouped under that one order number.
2. Desired behavior
- If the cart contains 2 × T-shirt , I need Shopify to end up with two separate orders :
- Order #1002 → 1 × T-shirt
- Order #1003 → 1 × T-shirt
- Each order must have its own:
- Order number
- Fulfillment record/tracking
- Invoice/confirmation email
- Reporting metrics
How to achieve this ?
Does Shopify currently offer any native setting or Checkout extension point to split a checkout into multiple orders automatically?