Julien13720 Posted February 21, 2023 Share Posted February 21, 2023 Bonjour, j'avais un soucis d'affichage sur la fiche produit. Quand il n'y avait plus de promotion sur un produit, il s'affichait encore -0%. Je vous donne l'astuce pour ne plus que ça s'affiche : Dans product.tpl : Remplacer : <p id="reduction_percent" {if !$product->specificPrice || $product->specificPrice.reduction_type != 'percentage'} style="display:none;"{/if}> Par : <p id="reduction_percent" {if !$product->specificPrice || $product->specificPrice.reduction_type != 'percentage' || $product->specificPrice.reduction ==0} style="display:none;"{/if}> Voilà, j'espère que ça aidera Link to comment Share on other sites More sharing options...
Eolia Posted February 21, 2023 Share Posted February 21, 2023 Dans le thème par défaut le code est conforme pourtant: <p id="reduction_percent" {if $productPriceWithoutReduction <= 0 || !$product->specificPrice || $product->specificPrice.reduction_type != 'percentage'} style="display:none;"{/if}>{strip} <span id="reduction_percent_display"> {if $product->specificPrice && $product->specificPrice.reduction_type == 'percentage'}-{$product->specificPrice.reduction*100}%{/if} </span> {/strip}</p> <p id="reduction_amount" {if $productPriceWithoutReduction <= 0 || !$product->specificPrice || $product->specificPrice.reduction_type != 'amount' || $product->specificPrice.reduction|floatval ==0} style="display:none"{/if}>{strip} <span id="reduction_amount_display"> {if $product->specificPrice && $product->specificPrice.reduction_type == 'amount' && $product->specificPrice.reduction|floatval !=0} -{convertPrice price=$productPriceWithoutReduction|floatval-$productPrice|floatval} {/if} </span> {/strip}</p> 1 Link to comment Share on other sites More sharing options...
Julien13720 Posted February 21, 2023 Author Share Posted February 21, 2023 Pas sur mon thème 😉 Link to comment Share on other sites More sharing options...
Mediacom87 Posted February 21, 2023 Share Posted February 21, 2023 il y a 14 minutes, Julien13720 a dit : Pas sur mon thème 😉 Donc votre thème n'est pas conforme. Mais bon cela n'est pas étonnant, il en existe de plus en plus qui ne respectent pas les bases de PrestaShop. 1 Link to comment Share on other sites More sharing options...
Julien13720 Posted February 22, 2023 Author Share Posted February 22, 2023 9 hours ago, Mediacom87 said: Donc votre thème n'est pas conforme. Mais bon cela n'est pas étonnant, il en existe de plus en plus qui ne respectent pas les bases de PrestaShop. Hélas... 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