Jump to content

Changer url accueil breadcrumb


Recommended Posts

Bonsoir tout le monde,

J'aimerais changer la page "accueil" de mon breadcrumb vers la category root de mon shop, qui s'apelle "shop" et qui est la base en gros des catégories.

Comment-faire pour changer ce premier onglet du fil d'ariane par la page "shop", afin de ne plus avoir une redirection vers la page accueil de mon site? 

Après des recherches j'ai vu qu'il y avait un fichier breadcrumb.tpl dans le dossier du thème parent, mais je ne sais pas si c'est bien là qu'il faut chipoter, et je ne sais pas quoi faire exactement non plus.

D'avance merci pour vos astuces,

Christophe

breadcrumb edit home to shop category.png

breadcrumb edit accueil vers shop.png

Link to comment
Share on other sites

Salut,

ca à l'air d'être le breadcrumb.tpl qu'il faut chipoter pour une modification du front

<nav data-depth="{$breadcrumb.count}" class="breadcrumb hidden-sm-down">
  <ol>
    {block name='breadcrumb'}
      {foreach from=$breadcrumb.links item=path name=breadcrumb}
        {block name='breadcrumb_item'}
          <li>
            {if not $smarty.foreach.breadcrumb.last}
              <a href="{$path.url}"><span>{$path.title}</span></a>
            {else}
              <span>{$path.title}</span>
            {/if}
          </li>
        {/block}
      {/foreach}
    {/block}
  </ol>
</nav>

certainement changer la condition dans le foreach

...
{block name='breadcrumb_item'}
          <li>
            {if $smarty.foreach.breadcrumb.first}
              <a href="lien_de_ta_categorie"><span>titre_de_ta_categorie</span></a>
            {elseif not $smarty.foreach.breadcrumb.last}
              <a href="{$path.url}"><span>{$path.title}</span></a>
            {else}
              <span>{$path.title}</span>
            {/if}
          </li>
        {/block}
....

a tester...

 

cdt

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