Page 1 of 1

Discounts not showing in Order Summary

Posted: Thu Sep 05, 2013 3:49 pm
by kwikstand
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.

Re: Discounts not showing in Order Summary

Posted: Mon Sep 09, 2013 2:26 am
by mazhar
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.