MSRP Shows When Less Than or Equal
MSRP Shows When Less Than or Equal
Is there a way to stop the MSRP from showing when the actual price is greater than or equal to the value? I know...the easy answer is to be sure not to set the Price > MSRP.
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
I can't test this right now, but what about in the buyproductdialog.ascx:
changing (ShowMSRP && (_Product.MSRP > 0));
to (ShowMSRP && (_Product.MSRP >= _ShowPrice ));
Code: Select all
//HANDLE REGPRICE ROW
trRegPrice.Visible = (ShowMSRP && (_Product.MSRP > 0));
if (trRegPrice.Visible)
{
RegPrice.Text = _Product.MSRP.ToString("ulc");
}
to (ShowMSRP && (_Product.MSRP >= _ShowPrice ));
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
Sam,
I've complained to Able about it too - I don't like the way the logic works regarding how price, MSRP etc are displayed.
I went ahead and modified my code to prevent it from doing what you've described. Let me see if I can find the code change and document it here for you. it wasn't very hard to do.
I've complained to Able about it too - I don't like the way the logic works regarding how price, MSRP etc are displayed.
I went ahead and modified my code to prevent it from doing what you've described. Let me see if I can find the code change and document it here for you. it wasn't very hard to do.
Joe Payne
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com
AbleCommerce Custom Programming and Modules http://www.AbleMods.com/
AbleCommerce Hosting http://www.AbleModsHosting.com/
Precise Fishing and Hunting Time Tables http://www.Solunar.com