Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hello,
How hard/easy would it be to implement free freight when shopping for a certain amount?
//Kalle
Hi Kalle
See this post for a simple shipping calculator: http://our.umbraco.org/projects/website-utilities/tea-commerce/tea-commerce-support/40842-Shipping-cost-multiplied-by-total-quantity
In your case you would have to order.SubTotal.Value > 500 ? 0M : base.CalculatePrice( shippingMethod, currency, order )
That should be dead simple. This doesnt take multiple currencies into account.
Kind regardsAnders
Did this solve you problem?
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
free shipping from 500:-?
Hello,
How hard/easy would it be to implement free freight when shopping for a certain amount?
//Kalle
Hi Kalle
See this post for a simple shipping calculator: http://our.umbraco.org/projects/website-utilities/tea-commerce/tea-commerce-support/40842-Shipping-cost-multiplied-by-total-quantity
In your case you would have to order.SubTotal.Value > 500 ? 0M : base.CalculatePrice( shippingMethod, currency, order )
That should be dead simple. This doesnt take multiple currencies into account.
Kind regards
Anders
Hi Kalle
Did this solve you problem?
is working on a reply...