Vous souhaitez ajouter la réduction en montant et en pourcentage dans le module homefeatured ? Il vous suffit simplement d’utiliser le code suivant dans le fichier homefeatured.tpl du module homefeature.
{if isset($product.reduction) && $product.reduction}
{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"}
-{convertPrice price=$reduction_amount} (-{$reduction_perc} %)
{/if}

