Discount based on total price

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
Hace 14 años
Hello,

Is it possible to give a discount based on the total price? Whe a customer orders above 100 euro, he gets a discount of 10 euro for example.

I didn't find this in the documentation, so I guess it is not included in nopCommerce yet. Unless I overlooked it.

Is it hard to implement it?

Regards,
Jurgen
Hace 14 años
No this is not avaliable (from what I can see either).  Unforunately there doesn't look to be a Discount Provider you can hook into either.  I'm sure you could get this done with relatively ease if you a developer and had some time on your hands.
Hace 14 años
Yes, I did found my way in the code to inject a custom piece of code.

Thanks.
Hace 14 años
Maybe you could explain what you did in case anyone else is looking for the same thing??
Hace 14 años
Off course, but it is maybe not the most elegant solution...

On the ShoppinCartManager.cs code file, function GetOrderDiscount, I've added just before the return:

if (orderSubTotal - SubTotalDiscount > 100)
            {
                SubTotalDiscount += 10;
            }
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.