Page 1 of 1

How do I change the Volume Discount box on the Product Page?

Posted: Tue Nov 25, 2008 2:31 pm
by digitalkemical
I am looking for a way to alter the text displayed on the product page when a volume discount is applied. Right now it says "Buy any, save 33%" and I'd like to be able to add a line of text under that. I can't seem to find any reference to this box in the code. Any help getting me pointed in the right direction would be great. Thanks!

Re: How do I change the Volume Discount box on the Product Page?

Posted: Tue Nov 25, 2008 4:18 pm
by jmestep
The code is in ConLib/ProductDiscountsDialog.ascx.cs

Re: How do I change the Volume Discount box on the Product Page?

Posted: Wed Nov 26, 2008 5:02 am
by mazhar
Locate the following line in the ConLib/ProductDiscountDialog.ascx.cs

Code: Select all

levelList.Append("</li>");
and make it look like

Code: Select all

levelList.Append("<br />My Message Here");
            levelList.Append("</li>");
Now change the My Message Here text with your own required text.