Jump to content

detail produit afficher EAN13


Recommended Posts

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.pro
installation 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 by lolodev (see edit history)
Link to comment
Share on other sites

  • 2 weeks later...

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 by Matt K. (see edit history)
  • Like 1
Link to comment
Share on other sites

  • 1 year later...
  • 3 months later...
  • 2 months later...

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...