Jump to content

[RESOLU] Breadcrumbs (fil d'Ariane) en double


Recommended Posts

Bonsoir,

 

voici le code de mon fil d'ariane :

 

{if isset($smarty.capture.path)}{assign var='path' value=$smarty.capture.path}{/if}
<div class="breadcrumb">
   <a href="{$base_dir}" title="{l s='return to'} {l s='Home'}">{l s='Home'}</a>{if isset($path) AND $path}<span class="navigation-pipe">{$navigationPipe|escape:html:'UTF-8'}</span>{if !$path|strpos:'span'}<span class="navigation_page">{$path}</span>{else}{$path}{/if}{/if}
</div>

 

si tu t'y connais, tu pourrais me dire ?

 

Merci

Link to comment
Share on other sites

  • 4 weeks later...

Voila ce que m'affiche Firebug :

 

<div class="breadcrumb">


 <a title="retour à Accueil" href="http://www.decoacoeur.com/">Accueil</a>

   <span class="navigation-pipe">></span>

	 <a title="♥ Déco Coq et Poule" href="http://www.decoacoeur.com/20-deco-coq-poule">♥ Déco Coq et Poule</a>

   <span class="navigation-pipe">></span>
	  ♥ Déco Coq et Poule

   <span class="navigation-pipe">></span>

   <span class="navigation_product">Petite poule en céramique coeur, déco coq et poule</span>
</div>

 

Et voici le code de mon fichier TPL :

{if isset($smarty.capture.path)}{assign var='path' value=$smarty.capture.path}{/if}
<div class="breadcrumb">
   <a href="{$base_dir}" title="{l s='return to'} {l s='Home'}">{l s='Home'}</a>

   {if isset($path) AND $path}
       <span class="navigation-pipe">
           {$navigationPipe|escape:html:'UTF-8'}
       </span>
       {if !$path|strpos:'span'}
           <span class="navigation_page">
               {$path}
           </span>
       {else}
           {$path}
       {/if}
   {/if}
</div>

 

et toujours la catégorie en double, une fois avec le lien dessous et une fois sans.

 

Merci de votre aide.

Link to comment
Share on other sites

  • 1 month later...

Solution:

 

ouvrir: ../votretheme/my-account.tpl et supprimer:

 

<p><a href="{$base_dir}" title="{l s='Home'}"><img src="{$img_dir}icon/home.gif" alt="{l s='Home'}" class="icon" /></a><a href="{$base_dir}" title="{l s='Home'}">{l s='Home'}</a></p>

 

(dernière ligne je crois)

Edited by praneth (see edit history)
Link to comment
Share on other sites

  • 2 weeks later...

J'ai eu le même problème, sur la version 1.5.2.

 

Il faut modifier le fichier tools.php dans le dossier classes.

 

Ligne 907 fonction getpath() remplacer return $full_path.$path; par $full_path;

 

Ligne 951 fonction getFullPath() remplacer le return par :

 

return Tools::getPath($id_category, $category->name, true, $type_cat).' <span class="navigation_product">'.htmlentities($end, ENT_NOQUOTES, 'UTF-8').'</span>';

 

Le mieux c'est de faire un override des 2 fonctions

Edited by camille13 (see edit history)
  • Like 1
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...