sooly Posted November 16, 2018 Share Posted November 16, 2018 (edited) Hello, I would like to hide last text block from breadcrumb navigation on mobile phones. Example (on product page): Notebooky > Adaptéry k notebookům > Adaptéry náhradní > Nabíječka na notebook acer 19v 3.42a (5.5x1.7) Im trying to make it look like this: Notebooky > Adaptéry k notebookům > Adaptéry náhradní I have already tried some CSS, Javascript and editing breadcrumb.tpl but I dont understand how are breadcrumbs made. Could anyone help ? Thanks. Code in breadcrumb.tpl <!-- Breadcrumb --> {if isset($smarty.capture.path)}{assign var='path' value=$smarty.capture.path}{/if} <div class="breadcrumb clearfix {if isset($warehouse_vars.breadcrumb_width) && $warehouse_vars.breadcrumb_width == 0}fullwidth-breadcrumb{/if}"> {if isset($warehouse_vars.breadcrumb_width) && $warehouse_vars.breadcrumb_width == 0}<div class="container">{/if} <a class="home" href="{if isset($force_ssl) && $force_ssl}{$base_dir_ssl}{else}{$base_dir}{/if}" title="{l s='Return to Home'}"><i class="icon-home"></i></a> {if isset($path) AND $path} <span class="navigation-pipe"{if isset($category) && isset($category->id_category) && $category->id_category == (int)Configuration::get('PS_ROOT_CATEGORY')} style="display:none;"{/if}>{$navigationPipe|escape:'html':'UTF-8'}</span> {if $path|strpos:'span' !== false} <span class="navigation_page">{$path|@replace:'<a ': '<span itemscope itemtype="http://data-vocabulary.org/Breadcrumb"><a itemprop="url" '|@replace:'data-gg="">': '><span itemprop="title">'|@replace:'</a>': '</span></a></span>'}</span> {else} {$path} {/if} {/if} {if $page_name == 'product'} {hook h='productnavs'} {/if} {if isset($warehouse_vars.breadcrumb_width) && $warehouse_vars.breadcrumb_width == 0}</div>{/if} </div> <!-- /Breadcrumb --> Generated HTML code by breadcrumb.tpl <div class="breadcrumb clearfix "> <a class="home" href="https://powerparts.cz/" title="Zpět na hlavní stránku"> <i class="icon-home"></i></a> <span class="navigation-pipe">> </span> <span class="navigation_page"> <span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"> <a itemprop="url" href="https://powerparts.cz/457-notebooky/" title="Notebooky"> <span itemprop="title">Notebooky </span></a> </span> <span class="navigation-pipe">> </span> <span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"> <a itemprop="url" href="https://powerparts.cz/50-adaptery-k-notebookum/" title="Adaptéry k notebookům"> <span itemprop="title">Adaptéry k notebookům </span></a> </span> <span class="navigation-pipe">> </span>Nabíječka na notebook acer 19v 3.42a (5.5x1.7) </span> <div id="productsnavpn" class="pull-right"> </div> </div> Example: https://i.imgur.com/VGbqRqg.png Edited November 21, 2018 by sooly (see edit history) Link to comment Share on other sites More sharing options...
sooly Posted November 21, 2018 Author Share Posted November 21, 2018 Nobody has an idea ? Link to comment Share on other sites More sharing options...
Rizzzle Posted August 17, 2022 Share Posted August 17, 2022 Hi, did you solve this? Thanks Link to comment Share on other sites More sharing options...
Ali Samie Posted August 17, 2022 Share Posted August 17, 2022 First option: 1. create a dummy module and use this hook: actionFrontControllerSetVariables 2. then modify breadcrumb (more info in documents: https://devdocs.prestashop.com/1.7/modules/concepts/hooks/list-of-hooks/) 3. also check why in this method assignGeneralPurposeVariables() of this file classes/controller/FrontController.php Second option: (not recommended) 1. override this method getBreadcrumbLinks() in this file controllers/front/ProductController.php 2. delete last item in breadcrumb 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