Maxel Posted October 1, 2020 Share Posted October 1, 2020 Bonjour, Mon objectif est d'avoir une image par défaut de mon breadcrumb différent selon ma boutique . Voici mon Breadcrumb.TPL {** * 2007-2018 PrestaShop * * NOTICE OF LICENSE * * This source file is subject to the Academic Free License 3.0 (AFL-3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * https://opensource.org/licenses/AFL-3.0 * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * to [email protected] so we can send you a copy immediately. * * DISCLAIMER * * Do not edit or add to this file if you wish to upgrade PrestaShop to newer * versions in the future. If you wish to customize PrestaShop for your * needs please refer to http://www.prestashop.com for more information. * * @author PrestaShop SA <contact@prestashop.com> * @copyright PrestaShop SA * @license https://opensource.org/licenses/AFL-3.0 Academic Free License 3.0 (AFL-3.0) * International Registered Trademark & Property of PrestaShop SA *} <nav data-depth="{$breadcrumb.count}" class="breadcrumb"> <div class="container"> {if $page.page_name == 'category' && $category.image.large.url != ''} <h1 class="h1 category-name hidden-sm-down">{$category.name}</h1> {/if} <ol itemscope itemtype="http://schema.org/BreadcrumbList"> {block name='breadcrumb'} {foreach from=$breadcrumb.links item=path name=breadcrumb} {if ($path.title) && isset($path.title)} {block name='breadcrumb_item'} <li itemprop="itemListElement" itemscope itemtype="http://schema.org/ListItem"> <a itemprop="item" href="{$path.url}"> <span itemprop="name">{$path.title}</span> </a> <meta itemprop="position" content="{$smarty.foreach.breadcrumb.iteration}"> </li> {/block} {/if} {/foreach} {/block} </ol> </div> {if $page.page_name == 'category' && $category.image.large.url != ''} {if $category.image.large.url} <div class="category-cover hidden-sm-down"> <img src="{$category.image.large.url}" class="img-fluid" alt="{$category.image.legend}"> </div> {/if} {else} <div class="category-cover hidden-sm-down"> <img src="https://i.ibb.co/bbmZ4Wy/PHOTO-BOULPAT-minia.jpg" class="img-fluid" alt="Breadcrumb image"> </div> {/if} </nav> Que dois-je modifier pour avoir une image différente sur mon breadcrumb de la boutique avec $id_shop == "4" Merci d'avance. 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