Another simple example of having a reduced Ground shipping rate
Basically, you use the Surcharge to negate the Ground Rate and then add $5. In this example, we do it for USPS. (Read more about using Surcharge to adjust the rate here)
Order | Type | Name | Expression | Rate Expression | Surcharge Expression |
100 | Packing | Pack | true | Packing.FirstFitSingleBox |
|
110 | Option | USPS | true | Shipping.USPS | ([$SubTotalWithDiscounts] > 50) AND !("AK,HI".Contains([State]) AND [$Name].Contains("Ground")) ? -[$Rate] + 5 : 0 |