I want to implement shipping rates according to line item totals for products belonging to a specific shipping class. The rates should work for all enabled countries.
Shipping class: "flat_rate:1"
Shipping rates:
+------------------+---------------+
| Product Total | Shipping Rate |
+------------------+---------------+
| $50 to $150 | $190 |
| $151 to $300 | $190 |
| $301 to $700 | $255 |
| $701 to $1,000 | $305 |
| $1,001 to $2,000 | $400 |
| $2,001 to $4,000 | $430 |
| $4,001 to $6,000 | $530 |
+------------------+---------------+
So far I have seen shipping rate codes based on either cart total/quantity, country, shipping class but not shipping class+included product totals. Only paid plugins have this feature.