For any carts whose total pre-shipping value is less than $1000, client would like to require credit card as the only payment option - no Purchase Order allowed for later invoicing. Is this ...
No content to show
User Activity
From the draft order:const lineItems = draftOrder.line_items;const newCartItems = lineItems.map((item) => ({id: item.variant_id,quantity: item.quantity,}));return fetch('/cart/add.js', {method: 'POST',headers: {'Content-Type': 'application/json',},bo...
The only way I found is to update cart from draft order a then checkout.