Manu-41 Posted May 29, 2020 Share Posted May 29, 2020 (edited) Bonjour, je cherche à ajouter l'étiquette 'Nouveau' dans le module produit dans la même catégorie pour les nouveaux produits de la boutique. Auriez vous une solution? J'ai testé avec le code du product-list.tpl mais la variable ne doit pas etre prise en compte. J'ai cherché dans le forum et google, mais pas d'infos (du moins je n'ai rien vu). {if isset($product.new) && $product.new == 1} <a class="new-box" href="{$product.link|escape:'html':'UTF-8'}"> <span class="new-label">{l s='Nouveauté'}</span> </a> {/if} Une aide précieuse serai la bienvenue. PS 1.6 Merci Edited May 29, 2020 by Manu-shop (see edit history) Link to comment Share on other sites More sharing options...
doekia Posted May 29, 2020 Share Posted May 29, 2020 $product->new Link to comment Share on other sites More sharing options...
Manu-41 Posted May 29, 2020 Author Share Posted May 29, 2020 29 minutes ago, doekia said: $product->new Bonjour doekia, je l'écrit donc comme ça? {if isset($product->new) && $product->new == 1} <a class="new-box" href="{$product.link|escape:'html':'UTF-8'}"> <span class="new-label">{l s='Nouveauté'}</span> </a> {/if} Link to comment Share on other sites More sharing options...
doekia Posted May 29, 2020 Share Posted May 29, 2020 ben oui Link to comment Share on other sites More sharing options...
Manu-41 Posted May 29, 2020 Author Share Posted May 29, 2020 2 hours ago, doekia said: ben oui Je viens de testé, rien ne s'affiche (j'ai aussi contrôlé dans firebug) J'ai aussi testé avec le code du product.tpl {if $product->new} <span class="new-box"> <span class="new-label">{l s='Nouveauté'}</span> </span> {/if} et le code du product-list.tpl {if isset($product->new) && $product->new == 1} <a class="new-box" href="{$product.link|escape:'html':'UTF-8'}"> <span class="new-label">{l s='Nouveauté'}</span> </a> {/if} Une piste? Link to comment Share on other sites More sharing options...
doekia Posted May 29, 2020 Share Posted May 29, 2020 Dans product-list c'est $product.new et sur product.tpl c'est $product->new L'un est un tableau, l'autre est un objet Link to comment Share on other sites More sharing options...
Manu-41 Posted May 29, 2020 Author Share Posted May 29, 2020 1 minute ago, doekia said: Dans product-list c'est $product.new et sur product.tpl c'est $product->new L'un est un tableau, l'autre est un objet Du coup l'afficher? Vu que c'est une liste de produit, je doit prendre le product-list. Mais ca ne fonctionne pas Link to comment Share on other sites More sharing options...
doekia Posted May 29, 2020 Share Posted May 29, 2020 A vérifier avec {$product|print_r:1} que le tableau contient new... peut être que le getproductpropertied ne le ramène pas. Mais j'en doute sur product -list c'est +/- standard Link to comment Share on other sites More sharing options...
Manu-41 Posted June 2, 2020 Author Share Posted June 2, 2020 j'ai vérifié dans, la fonction 'new' n'est pas connu dans e module. Une piste pour a créer? ou l'appeler afin d'afficher le label? Link to comment Share on other sites More sharing options...
Manu-41 Posted June 3, 2020 Author Share Posted June 3, 2020 up, comment afficher le label 'new' dans le product catégorie? 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