Jump to content

Display Percentage on Product List for Products on Sale


hurray

Recommended Posts

Hi!

It looks like 1.5 prestashop does not show it by default.

You can check template product-list.tpl for property «specific_prices» of product:
 

isset($product.specific_prices)

If it is available on this template then you can try to do something like this

{if isset($product.specific_prices) && $product.specific_prices.reduction_type == 'percentage'}
	<span class="price-percent-reduction">-{$product.specific_prices.reduction * 100}%</span>
{/if}


 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...