Learn about Cart Discounts in Composable Commerce.
After completing this page, you should be able to:
- Describe the key features of Cart Discounts in Composable Commerce and how they differ to those of Product Discounts.
You can create two types of Cart Discounts:
- Numeric: A Cart Discount that applies either a relative discount (a percentage off), an absolute discount (a set amount off), or a fixed price discount (for example, get 3 watermelons for $5) after items are added to the Cart.
- Gift line item: A Cart Discount that adds a specific Product to the Cart after items are added to the Cart.
100
. In addition to this 100
, you can also have a further 100
Cart Discounts associated with a specific Store, per Store. So in total, your limit for Cart Discounts is 100
+ (100
* number of Stores in a Project). The number of Stores configured for a Cart Discount is limited to 500
.Set up Cart Discounts in the Merchant Center
The Merchant Center provides a UI to set up your Cart Discounts that follows a similar pattern no matter the type of Cart Discount you are setting up:
-
General information
-
Discount configuration
- Under these cart conditions: (Cart Discount condition)
- Apply these discount effects: (Cart Discount effect)
Cart Discount conditions
lineItemExists
function which returns true or false if there is at least one LineItem in the cart that matches the parameters passed to the functions. You can find a lot more detail about the fields available to you in the Carts Predicate section of our documentation.Cart Discount effects
A Cart Discount effect defines which segment of the Cart will be discounted; there are four options that you can choose from. When you select an option, it targets its discount to:
- Total Price: the total Price of the Cart.
- Item: can target either a Line Item (a snapshot of a Product Variant at the time it is added to a Cart), or a Custom Line Item (a generic item not associated to any Product Variant). See Line Items and Custom Line Items for further information about the difference between these two.
- Multibuy line items: represent a "Buy X items, get Y of them at a discounted rate" type of discount. Can also be used either with Line Items or Custom Line Items. Please note multibuy discounts can only receive a relative (%) discount.
- Shipping: the Cart’s shipping costs.
Ranking and stacking
Like Product Discounts, all Cart Discounts must have a rank – for Cart Discounts this is important as a Cart can have more than one Discount applied at any given time.
Rank is also important in Cart Discounts because the order that Cart Discounts are processed for a Cart can impact the final outcome. For example, if a Cart has a total value of $100 and there are two Discounts that apply – say one that discounts the Cart total by 10% and one that discounts the Cart total by $10. If we apply the $10 Discount before the 10% Discount the resulting Cart total will be $81, but if we apply them in the opposite order, the cart total will be $80. You control the order the Cart Discounts are processed by setting the rank.
stackingMode
field in a Cart Discount are Stacking
which means to continue processing, and StopAfterThisDiscount
which means exactly what it says – don’t process any more Cart Discounts for this Cart if this Discount has been applied.In the Merchant Center, the Stacking Mode is presented like this:

StackingMode
set to StopAfterThisDiscount
.StopAfterThisDiscount
StackingMode of the other Cart Discounts, if any. The sort order for the Total Price discount only determines its ranking among other Cart Discounts targeting the Total Price.As a result, the
stackingMode = StopAfterThisDiscount
takes effect for a Cart Total Price discount only when there are other Cart Discounts targeting the Total Price with a lower sort order.