Discounts not showing in Order Summary

For general questions and discussions specific to the AbleCommerce GOLD ASP.Net shopping cart software.
Post Reply
kwikstand
Commodore (COMO)
Commodore (COMO)
Posts: 410
Joined: Mon Feb 19, 2007 8:12 pm
Contact:

Discounts not showing in Order Summary

Post by kwikstand » Thu Sep 05, 2013 3:49 pm

I just noticed that when a customer checks out and uses a coupon code, it doesn't show in their Order Summary unless they referesh the page. Is there a way to make the page refresh automatically when entering the coupon code? Customers tend to not trust that they are getting their coupon if they don't see it in their summary before making payment and completing check out.
Contractor's Solutions
www. contractors-solutions.net

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: Discounts not showing in Order Summary

Post by mazhar » Mon Sep 09, 2013 2:26 am

Edit ConLib/CouponDialog.ascx.cs file and locate following code

Code: Select all

ValidCouponMessage.Visible = true;
and update it like

Code: Select all

ValidCouponMessage.Visible = true;
Response.Redirect(Request.Url.ToString());
This will give automatic refresh whenever coupon will be applied.

Post Reply