Is it possible?

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
12 years ago
Is it possible to add some type of setting that could add an additional "small order fee" type of charge to the shopping cart?

One of my distributors charges me $5 to do a drop ship if the order I do with them is less than $100.  Is it possible to have nopcommerce recognize that an order is under the set amount of $100 in the shopping cart and add the fee and not add the fee if the order goes beyond $100?

Would be nice to be able to recover the fee without having to explain every time and resend a corrected invoice...at this point I am just absorbing it, but it could become a problem if order volume picks up.

Thanks!
12 years ago
smokin wrote:
Is it possible to add some type of setting that could add an additional "small order fee" type of charge to the shopping cart?

One of my distributors charges me $5 to do a drop ship if the order I do with them is less than $100.  Is it possible to have nopcommerce recognize that an order is under the set amount of $100 in the shopping cart and add the fee and not add the fee if the order goes beyond $100?

Would be nice to be able to recover the fee without having to explain every time and resend a corrected invoice...at this point I am just absorbing it, but it could become a problem if order volume picks up.

Thanks!

In admin>configuration>settings>shipping setings select "Free shipping over 'X':"
and in admin>configuration>shipping>shipping rate computation method configure fixed rate shipping to $5
12 years ago
I don't think he wants Free Shipping over $100, but rather wants to not add extra fee when over $100.  I.e. I assume shipping charges always apply regardless of total amt.

There is this proposed work item for negative discount that could probably deal with this.

But, if you need this now, and you're OK with not itemizing the charge, and having it included in the shipping rate, then consider Shipping Director.  Check out the 2nd example in this blog - Shipping Rates with a Minimum Charge.  In your case, the Surcharge Expression would be similar to  
               $SubTotalWithoutDiscounts < 100 ? 5 : 0
(i.e. if total less $100 then surcharge of $5, else surcharge of $0)
12 years ago
The best solution could be via cash attributes. In this wat it could be possible to set automatically a fee while order total is below (or Above) X, in a similar manner as discount coupon.
What's missing now Is the condition to cash attributes and the possibility to have them applied automatically.
11 years ago
I've just created a work item. Please vote here
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.