Mejores ventas
{if $best_sellers|@count > 0}
{foreach from=$best_sellers item=product name=myLoop}
-
{$product.name|strip_tags|truncate:26}
{$product.price}
{convertPrice price=$product.price_without_reduction}
{if $product.specific_prices.reduction_type =='percentage'}
{assign var="reduc_value" value=$product.specific_prices.reduction * 100}
(-{$reduc_value|intval}%)
{elseif $product.specific_prices.reduction_type == 'amount'}
(-{$product.specific_prices.reduction|number_format:2:",":"."}€)
{/if}
{/foreach}
{else}
{l s='No best sellers at this time' mod='blockbestsellers'}
{/if}