How to add discounts to pricing in order guide
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2024 09:19 PM
Hi Team,
Can you suggest how to configure discounts in order guide.For example if a user is requesting multiple items via order guide, it should give some discounts in pricing, where do we calculate that?
Like every catalog item has a pricing amount fixed. How can we add discount feature if its ordered as bundled via order guide?
BR,
Ankur
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-22-2024 10:23 PM - edited 01-22-2024 10:25 PM
Hi @Community Alums,
Currently there are no such features OOTB which manages the Discounting and Offer deals on purchase. But yes you can do this using catalog client scripts (based on your discount policy ). Lets say you wanted to provide a 50$ offer on any purchase over 500$. You can simply create a onsubmit client script which checks the price of cart on submission if exceeding 500$, if yes then Total amount can be made as 450$.
This can be done on load client script as well based on your needs...
In advance you can create a dedicated script include which manages your discount polices.. 10% off 50$ off etc...
Ex:
if(current.request.price >= 500){
// ADD YOUR DISCOUNTING POLICY HERE
}
I hope this helps...
☑️ Please mark responses as HELPFUL or ACCEPT SOLUTION to assist future users in finding the right solution....