![]() |
Display "Percent Saved" condition
Could someone point me to where it's determined whether or not to display "%n Saved"
I don't want to display % saved if the value is less than 10% (I think telling someone they saved 2% is silly) I'm sure there is a check somewhere for "less than 1" because if Price = List Price the %n Saved does not display. |
Find this code in your skin1/customer/main/product.tpl file
Code:
{if $product.list_price gt 0 and $product.taxed_price lt $product.list_price} And replace it with this: Code:
{if $product.list_price gt 0 and $product.taxed_price lt $product.list_price} This works for Version 4.0.12 |
Hey thanks! It works like a charm!
|
where in the admin can I ask it to calculate percentage savings or not.
i want to disable the percentage savings |
All times are GMT -8. The time now is 05:27 PM. |
Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.