In case of multiple discounts inside one offer, the app will auto prioritize the more specific type.
Specific products discount > specific collection discount > all products discount
For example:
Discount #1: Apply 20% off all products
Discount #2: Apply 50% off collection X
Discount #3: Apply 99% off product A
Assume product A ($100), product B ($100) and product C ($100 and included in collection X).
For a cart with A+B+C, the result would be:
Cart before wholesale discount:
A+B+C => $100 + $100 + $100 => $300
Cart after wholesale discount:
A => $100-99% (Discount #3) => $1
B => $100-20% (Discount #1) => $80
C => $100-50% (Discount #2) => $50
A+B+C => $1 + $80 + $50 => $131
* The same applies for any advanced settings you set per a group of discounts (like min quantity)
If you're using cart value discounts (spend X and get $ / % off) - the discount will be applied on the discounted total.
For example:
Assume product A ($100), product B ($100) and product C ($100)
Assume a 20% off discount on all products
Assume a cart value discount - spend $200 and get $40 off
For a cart with A+B+C, the result would be:
Total: $300
Discounted total: $300 - 20% off wholesale discount = $240
Cart value discount: $240 - $40
Wholesale total: $200