Reputation: 121
I Would like to add different progressive flat rates shipping cost for 2 different shipping Zones domestic and international: A fixed amount for the first item and an additional cost for every additional items.
eg: Standard domestic postage $10, and $20 international, with $5 additional for each extra item.
Is this possible through woocommerce shipping setting? or this need some custom coding?
Any help is appreciated.
Upvotes: 1
Views: 304
Reputation: 254388
You can use the following cost line that will give you a fixed cost + an additional cost by item. This need to be differently for each shipping zone.
For your "Domestic" shipping Zone, use: 5+([qty]*5)
So the first item will be at 10
(5+5)
and each additional item will add +5
to the cost.
For your "International" shipping Zone, use: 15+([qty]*5)
So the first item will be at 20
(15+5)
and each additional item will add +5
to the cost..
Upvotes: 1