- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi
What I am trying to achieve is this: (currently city operation so no issues there)
- If cart subtotal is less or equal to Rs.250 then shipping should Rs.100
- If cart subtotal is more than Rs.250 but less than or equal to Rs.500 then shipping should be Rs.50
- If cart subtotal is more than Rs.500 then shipping is Free
Is this possible to achieve in Magento CE 1.9.2.4 out of the box?
Is this possible with any existing extension?
Cheers, thanks
Bijal
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can manage your shipping price using Table rate shipping method.
Kindly refer below links for your requirement,
https://docs.magento.com/m1/ce/user_guide/shipping/table-rates.html
Magento 2 Blogs/Tutorial
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
so if I understand this correctly, if I create the following structure, then on the checkout page, the shipping amount will be automatically selected and displayed based on cart subtotal value?
COUNTRY | REGION / STATE | ZIP / POSTAL CODE | ORDER SUBTOTAL(and above) | SHIPPING PRICE |
INDIA | * | * | 500 | 0 |
INDIA | * | * | 250 | 60 |
INDIA | * | * | 0 | 100 |
Thanks
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can manage your shipping price using Table rate shipping method.
Kindly refer below links for your requirement,
https://docs.magento.com/m1/ce/user_guide/shipping/table-rates.html
Magento 2 Blogs/Tutorial
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
so if I understand this correctly, if I create the following structure, then on the checkout page, the shipping amount will be automatically selected and displayed based on cart subtotal value?
COUNTRY | REGION / STATE | ZIP / POSTAL CODE | ORDER SUBTOTAL(and above) | SHIPPING PRICE |
INDIA | * | * | 500 | 0 |
INDIA | * | * | 250 | 60 |
INDIA | * | * | 0 | 100 |
Thanks
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Multiple Shipping Rates based on subtotal
tried and tested on a dev site... thanks for the push in the right direction
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Multiple Shipping Rates based on subtotal
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Multiple Shipping Rates based on subtotal
the table rates worked great... im sure this ext will do the trick for M2... im still on M1
thanks for the help ankit