I have a product for say €20 RRP and I have a special price of 15.99. I don't want to see the 'Save: x% off' RED text under the product price.
Can this be switched off globally?
I have a product for say €20 RRP and I have a special price of 15.99. I don't want to see the 'Save: x% off' RED text under the product price.
Can this be switched off globally?
INCLUDES/LANGUAGES/ENGLISH.PHP
Look around lines 390 to 410
You can take out the define statements from:
PHP Code:// Discount Savings
define('PRODUCT_PRICE_DISCOUNT_PREFIX','Save: ');
define('PRODUCT_PRICE_DISCOUNT_PERCENTAGE','% off');
define('PRODUCT_PRICE_DISCOUNT_AMOUNT',' off');
PHP Code:// Discount Savings
define('PRODUCT_PRICE_DISCOUNT_PREFIX','');
define('PRODUCT_PRICE_DISCOUNT_PERCENTAGE','');
define('PRODUCT_PRICE_DISCOUNT_AMOUNT','');
20 years a Zencart User
...or stay out of the files and turn the display off in the Admin> Configuration> Product Info> Product Info - Show Sales Discount Savings Status
Schoolboy - might want to check out the e-Start book :)
Please do not PM for support issues: a private solution doesn't benefit the community.
Be careful with unsolicited advice via email or PM - Make sure the person you are talking to is a reliable source.
You're right Kim ! Trouble is that with some of us old fellows, is that we immediately see a solution thru a code hack, cause that's the way we did it in the early days.
There are many more switches these days, and you're right - I HAVE got the book and I SHOULD read it more carefully!
20 years a Zencart User
Thanks for your help guys - that worked fine.