an ASP.NET Open Source CMS & eCommerce platform
Search:
Last Post 7/31/2009 9:56:53 AM By lukezy. 1 replies.
7/31/2009 9:43:23 AM
blmtech
Posts: 2
Joined: 5/14/2008
Removing coupon code
I have tried removing the coupon code area from the site just like I did the gift certificate. It stills shows. code is below from Cart.ascx
<asp:Panel id="pnlCoupon" runat="server" visible ="false">
7/31/2009 9:56:53 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Removing coupon code
Change cart.ascx.cs line 68 to the following

pnlCoupon.Visible = false;

DotShoppingCart Staff