Discounts not showing in Order Summary
Discounts not showing in Order Summary
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
www. contractors-solutions.net
Re: Discounts not showing in Order Summary
Edit ConLib/CouponDialog.ascx.cs file and locate following code
and update it like
This will give automatic refresh whenever coupon will be applied.
Code: Select all
ValidCouponMessage.Visible = true;
Code: Select all
ValidCouponMessage.Visible = true;
Response.Redirect(Request.Url.ToString());