PHP Ferrari
PHP Ferrari

Reputation: 15616

oscommerse 2.3.1 : Shipping Method

I want some thing like:

if the total purchase by a customer is under $10 then s/he will charge $3 Delivery/shipping cost else if the total purchase by a customer is over $10 then s/he will charge free

But under admin->modlues->shipping I saw:

Shipping Cost
The shipping cost for all orders using this shipping method.
10:3.00,10.01:0.00

Now I don't know what does that formula tells and how can I change this formula?

Upvotes: 0

Views: 528

Answers (1)

Scott C Wilson
Scott C Wilson

Reputation: 20026

This is how table rate shipping is configured:

<up-to-amount>:<cost>,<up-to-amount>:<cost>...

what you have is, "up to 10, $3, up to 10.01, $0."

What you want is

10:3.00,1000000:0

Upvotes: 1

Related Questions