- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I'm having trouble creating a stackable discount code.
What needs to happen is the following:
When customer order is between $25 - $49,99 - discount $5
When customer order is between $50 - $74.99 - discount $10
When customer order is between $75 - or higher - discount $15
Is there any way this can be done within Magento. Any help I very appreciated.
Solved! Go to Solution.
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Victor,
Unfortunately, as your discount amount varies, its 3 different actions for Magento, and it requires a specific price rule PER action.
Magento consultancy
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi Victor,
Magento by default doesn't support this feature. There are a lot of extensions marketplace, but they also don't support. We must build our own code lines ever seen before.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Stackable discount [price rule]
Hi VictorTerreau,
You can do this with Magento. We will set up following conditions below. Promotions -> Shopping Cart Price Rules -> Conditions :
1. When customer order is between $25 - $49,99 - discount $5:
If ALL of these conditions are TRUE :
- Subtotal equals or greater than $25
- Subtotal equals or less than $49.99
2. When customer order is between $50 - $74.99 - discount $10:
If ALL of these conditions are TRUE :
- Subtotal equals or greater than $50
- Subtotal equals or less than $74.99
3. When customer order is between $75 - or higher - discount $15
If ALL of these conditions are TRUE :
- Subtotal equals or greater than $75
Remember that in Actions tab, we also set up Discount Amount for each rule.
Hope this works for you.
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Stackable discount [price rule]
Hi MrKhoa99,
Thx for the reply.
Your answer will create 3 different price-rules. But the problem is that the customer needs to receive only one discount-code.
So when he receives the code it should apply to all rules. I can't predict the amount the customer will order.
Is there any way I can apply these rules to just one rule?
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Re: Stackable discount [price rule]
Hi MrKhoa99 & Mboulliung ,
Both thank you for your replies.
Unfortunately coding is not an option. For the simple reason I'm not a coder
I'll have to contact my businesspartner to tell him it's not possible.
Anyways thx for the clear answers.
Answers will be checked as "solutions".