Jump to content

Afficher les infos Fabricants du BO dans la page Fabricant FO


linocorleon

Recommended Posts

Bonjour,

Je souhaiterai afficher toutes les infos Fabricants du BO dans la page Fabricant FO.


J’ai essayé de copier : {$manufacturer->description[$id_lang]|escape:'htmlall':'UTF-8'} dans manufacturer.tpl.
Ce que j’affiche c’est juste >!

Vous avez une idée SVP

En attendant, merci d'avance !

Link to comment
Share on other sites

  • 6 months later...

Bonjour,
voici un petit exemple d'affichage de la description fabricant sur la page fabricant (PrestaShop Version 1.2.5.0)

juste ce code :

{if !empty($manufacturer->description)}{$manufacturer->description}{/if}



à ajouter dans le template "manufacturer.tpl" comme ceci :

{include file=$tpl_dir./breadcrumb.tpl}

{l s='List of products by manufacturer:'} {$manufacturer->name|escape:'htmlall':'UTF-8'}
{if !empty($manufacturer->description)}{$manufacturer->description}{/if}

{include file=$tpl_dir./errors.tpl}

{if $products}
   {include file=$tpl_dir./product-list.tpl products=$products}
   {include file=$tpl_dir./pagination.tpl}
{else}

{l s='No products for this manufacturer.'}
{/if}



En espérant que cela puisse servir.

Cordialement,
Christophe

Link to comment
Share on other sites

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...