Mobile app version of vmapp.org
Login or Join
Michele947

: Is it possible to do shipping like this in Magento? What I need is to have Magento charge a flat rate shipping for orders under a certain amount, and free shipping for orders over that amount.

@Michele947

Posted in: #Ecommerce #Magento

What I need is to have Magento charge a flat rate shipping for orders under a certain amount, and free shipping for orders over that amount. It's like having two flat rates. I have tried setting a flat rate and free shipping together but it just gives the option to the customer to chose between them via a radio button; which is not what I need.

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Michele947

1 Comments

Sorted by latest first Latest Oldest Best

 

@Kimberly868

Your idea was good add free and flat rate and then you will just need a little hack in your template:

go to template/checkout/onepage/shipping_method/available.phtml and brake the for each as folow

</dd>
<?php //EGS to avoid other methods show up if freeshipping is in place ?>
<?php if($code=="freeshipping"){ break; } ?>




In the admin be sure you put the freeshipping first.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme