Remove Dicount Code Nop 1.5

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
13 年 前
Hi everbody,

I would like to remove in my basket and also the gift code ?

I'm in 1.5, I don't want to updrade cause is not automatic.

Do you have an idea ?

Thankyou

Regards

Sylvain
13 年 前
Follow the next steps:
1. Open \Modules\OrderSummary.ascx
2. Find <asp:Panel> controls with IDs: "phCoupon" and "phGiftCards"
3. Add attribute Visible="false" to them

For example,
<asp:Panel runat="server" ID="phCoupon" CssClass="coupon-box">
should become
<asp:Panel runat="server" ID="phCoupon" CssClass="coupon-box" Visible="false">
13 年 前
`Thanks works
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.