How do I change the Volume Discount box on the Product Page?
-
- Ensign (ENS)
- Posts: 9
- Joined: Thu Nov 13, 2008 2:33 pm
How do I change the Volume Discount box on the Product Page?
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!
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: How do I change the Volume Discount box on the Product Page?
The code is in ConLib/ProductDiscountsDialog.ascx.cs
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
Re: How do I change the Volume Discount box on the Product Page?
Locate the following line in the ConLib/ProductDiscountDialog.ascx.cs
and make it look like
Now change the My Message Here text with your own required text.
Code: Select all
levelList.Append("</li>");
Code: Select all
levelList.Append("<br />My Message Here");
levelList.Append("</li>");