innocuous Posted October 20, 2012 Share Posted October 20, 2012 (edited) Hi, Products page shows discounted price and discount percentage. I would like to show discounted price/discount on featured products in homepage. How do I do this? Thanks Edited November 20, 2012 by innocuous (see edit history) Link to comment Share on other sites More sharing options...
innocuous Posted November 20, 2012 Author Share Posted November 20, 2012 Noone helped so searched a LOT and through trial and error got this working: Add to homefeatured.tpl {if ((isset($product.reduction) && $product.reduction)) && $product.price_without_reduction > $product.price && $product.show_price AND !isset($restricted_country_mode) && !$PS_CATALOG_MODE} {math assign="reduction_amount" equation="(x - y)" x=$product.price_without_reduction y=$product.price} {math assign="reduction_perc" equation="(x / y) * 100" x=$reduction_amount y=$product.price_without_reduction format="%.0f"} <p class="price_container"><span class="price"> {convertPrice price=$product.price_tax_exc} (-{$reduction_perc}%) </span></p>{else}<div style="height:0px;"></div>{/if} Hope it helps someone! Same can be added to products-list.tpl in theme folder too! Link to comment Share on other sites More sharing options...
Agush Posted April 7, 2013 Share Posted April 7, 2013 Thank you, it's solves my problem. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now