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

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
digitalkemical
Ensign (ENS)
Ensign (ENS)
Posts: 9
Joined: Thu Nov 13, 2008 2:33 pm

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

Post by digitalkemical » Tue Nov 25, 2008 2:31 pm

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!

User avatar
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?

Post by jmestep » Tue Nov 25, 2008 4:18 pm

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

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

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

Post by mazhar » Wed Nov 26, 2008 5:02 am

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.

Post Reply