lolodev Posted August 29, 2017 Share Posted August 29, 2017 (edited) Bonjour Perstashop v1.6.15 je souhaite afficher la valeur du champ code barre EAN13 dans le detail de la fiche produit. je me sert de ce champ pour saisir un code article dans les declinaisons. donc il faut que ce soit le code ean13 des declinaisons qui s'affiche si il existe sinon celui du produit comment puis je modifier product.tpl pour afficher ce code aprés REFERENCE ? merci http://panneaurama.citinet.proinstallation avant migration sur domaine final PS 1.6.16 theme themplatemonster code originel PHP v5.4.x Mysql 5.1.73 tout les navigateurs Edited August 30, 2017 by lolodev (see edit history) Link to comment Share on other sites More sharing options...
Matt K. Posted September 11, 2017 Share Posted September 11, 2017 (edited) Salut, Et bien après l'affichage de la référence (voir https://github.com/PrestaShop/PrestaShop/blob/ab075e64a976cd5507bda2935e54a135370eec0b/themes/default-bootstrap/product.tpl#L162 pour le thème par défaut) tu peux ajouter ça : {if !empty($product->ean13) && $product->ean13} <p id="product_ean13"> <label>{l s='Ean13:'} </label> <span itemprop="gtin13" content="{$product->ean13}">{$product->ean13|escape:'html':'UTF-8'}</span> </p> {/if} Edited September 11, 2017 by Matt K. (see edit history) 1 Link to comment Share on other sites More sharing options...
Jean Francois G Posted October 16, 2018 Share Posted October 16, 2018 (edited) Comme il semblerait que personne ne t'ai dit merci.. Alors merci Matt, c'est un code parfait pour ceux qui veulent ajouter l'ean a la page produit. Merci encore PS : Lolodev, c'est quand même la moindre des choses non ? Edited October 16, 2018 by Jean Francois G (see edit history) Link to comment Share on other sites More sharing options...
Wstdhz Posted February 10, 2019 Share Posted February 10, 2019 Salut, ça ne marche pas pour ma part sur 1.7.4. Quelqu'un a-t-il une maj à partager? Merci! Link to comment Share on other sites More sharing options...
DaveHorizon Posted April 25, 2019 Share Posted April 25, 2019 Le code pour la version 1.7 {if isset($product.ean13) && $product.ean13 neq ''} <div class="product-ean"> <label class="label">{l s='EAN13' d='Shop.Theme.Catalog'} </label> <span itemprop="sku">{$product.ean13}</span> </div> {/if} 1 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