Use Case Summary
The store owner wants to charge shipping based on the total cart quantity. The first 10 items have a fixed shipping cost, and any additional items are charged in blocks of 7 units.
This allows the store to keep shipping fairly for small orders while still covering costs for larger purchases.
Conditions Table
| Condition | Range | Result |
| Cart Quantity | First 10 items | $8 |
| Cart Quantity | Every 7 items | +$3 |
Step-by-Step Setup
Use simple steps like:
- Go to WowShipping.
- Click Create shipping method, set the name, zone, and type of shipping method
- Select the Cart Quantity condition, recreate the scenario, and add shipping cost
- Save the method.

Final Outcome
🟢 Customer buys 10 items → $8
🟢 Customer buys 17 items → $8 + $3 = $11
🟢 Customer buys 24 items → $8 + $3 + $3 = $14
🟢 Customer buys 31 items → $8 + $3 + $3 + $3 = $17