We have a checkout page within our CMS, but there is an issue and I'm getting nowhere with our tech support. I found this forum so wondered if anyone can help. On our old version of our CMS a customer could enter one discount coupon when ordering, however
in an upgrade it appears they can use multiple and effectively get a discount that could damage our business.
The old checkout code looked like this
btnCheckOutNowTop.Visible = (!cart.IsEmpty());
if (!cart.IsEmpty())
{
if (cart.HasCoupon() && !cart.CouponIsValid)
{
&nb ...
Go to the complete details ...