less than a minute read • Updated 10 months ago
Common Discount Examples
Below is a list of common discounts in stores detailing their discount method and logic. For applying to a specific type of discount (product, category or coupon), please see details above.
Buy two products, take $2 off of both.
Method:
discount_quantity_amount
Logic:
allunits|2-2
Orders of five or more get a 10% on every item ordered. Orders of 10 or more get a 20% discount on every item ordered.
Method:
discount_quantity_percentage
Logic:
allunits|5-10|10-20
Buy two products, get additional products at $5 off. (The first two are not discounted.)
Method:
discount_quantity_amount
Logic:
incremental|3-5
With a quantity of 1-10, all products are at 100%. With a quantity of 150, 10 products would be at 100%, 40 would be at 90%, 50 would be at 85%, and 50 would be at 80%.
Method:
discount_quantity_percentage
Logic:
incremental|11-10|51-15|101-20
Buy one, get one free (100% off).
Method:
discount_quantity_percentage
Logic:
repeat|2-100
Buy 3, get the 4th at 50% off.
Method:
discount_quantity_percentage
Logic:
repeat|4-50
Buy any 5 products, get $10 off your order.
Method:
discount_quantity_amount
Logic:
single|5-10
Take 10% off orders of $99.99 or more.
Method:
discount_price_percentage
Logic:
allunits|99.99-10