Thierry Création Posted August 27, 2014 Share Posted August 27, 2014 Bonsoir a tous, Je suis peut être fatigué mais je ne trouve pas ou est appelé le breacdrumb sur une page catégorie. Voici ce que j'aimerai faire : Le fil d'ariane est affiché par défaut au dessus de l'image qui illustre la catégorie. J'aimerai le charger dans catégory.tpl juste en dessous de : {include file="$tpl_dir./errors.tpl"} {if isset($category)} {if $category->id AND $category->active} {if $scenes || $category->description || $category->id_image} <div class="content_scene_cat"> {if $scenes} <div class="content_scene"> <!-- Scenes --> {include file="$tpl_dir./scenes.tpl" scenes=$scenes} {if $category->description} <div class="cat_desc rte"> {if Tools::strlen($category->description) > 350} <div id="category_description_short">{$description_short}</div> <div id="category_description_full" class="unvisible">{$category->description}</div> <a href="{$link->getCategoryLink($category->id_category, $category->link_rewrite)|escape:'html':'UTF-8'}" class="lnk_more">{l s='More'}</a> {else} <div>{$category->description}</div> {/if} </div> {/if} </div> {else} <!-- Category image --> <div class="content_scene_cat_bg"{if $category->id_image} style="background:url({$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category_default')|escape:'html':'UTF-8'}) right center no-repeat; background-size:cover; min-height:{$categorySize.height}px;"{/if}> {if $category->description} <div class="cat_desc"> <span class="category-name"> {strip} {$category->name|escape:'html':'UTF-8'} {if isset($categoryNameComplement)} {$categoryNameComplement|escape:'html':'UTF-8'} {/if} {/strip} </span> </div> {/if} </div> {/if} </div> {/if} Merci de vos réponses :-) Thierry Link to comment Share on other sites More sharing options...
Divine Posted August 27, 2014 Share Posted August 27, 2014 Coucou Ne serait-il pas appelé de façon globale dans le header.tpl ? (version 1.6) 1 Link to comment Share on other sites More sharing options...
J. Danse Posted August 27, 2014 Share Posted August 27, 2014 Exact, il se situe dans le header.tpl: {if $page_name !='index' && $page_name !='pagenotfound'} {include file="$tpl_dir./breadcrumb.tpl"} {/if} Il va te falloir ajouter une condition ($page_name != 'category') et rajouter l'include à l'endroit souhaité. 1 Link to comment Share on other sites More sharing options...
amerigeau Posted August 27, 2014 Share Posted August 27, 2014 Hello, j'allais répondre mais on m'a devancé, c'est bien dans le header.tpl à la ligne 105 que tu as l'appel du fil d'ariane {include file="$tpl_dir./breadcrumb.tpl"} Bonne soirée ! 1 Link to comment Share on other sites More sharing options...
Thierry Création Posted August 27, 2014 Author Share Posted August 27, 2014 (edited) Hello, Merci Sabrina, Arnaud et Jonathan J'aurai du y penser au header. Avec toutes ces versions de Prestashop, il ne faut pas perdre le fil (d'ariane) Bonne soirée à tous. Thierry Edited August 27, 2014 by Thierry Création (see edit history) 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