allisio Posted March 6, 2017 Share Posted March 6, 2017 How can I remove breadcrumb from prestashop 1.7 ? Link to comment Share on other sites More sharing options...
w3bsolutions Posted March 6, 2017 Share Posted March 6, 2017 I wouldn't recommend you to do so navigationwise, but you can simply hide it via CSS: #wrapper .breadcrumb { display:none; } 1 Link to comment Share on other sites More sharing options...
nadie Posted March 6, 2017 Share Posted March 6, 2017 Other option, File: /themes/classic/templates/_partials/breadcrumb.tpl Comment this code: {* <nav data-depth="{$breadcrumb.count}" class="breadcrumb hidden-sm-down"> <ol itemscope itemtype="http://schema.org/BreadcrumbList"> {foreach from=$breadcrumb.links item=path name=breadcrumb} <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> {/foreach} </ol> </nav> *} Sorry for my English, 1 1 Link to comment Share on other sites More sharing options...
allisio Posted March 7, 2017 Author Share Posted March 7, 2017 Thanks to all for your advice. I used the suggestion of nadie and works. For the advice of w3bsolutions, I don't find the CSS to be modified. Link to comment Share on other sites More sharing options...
rimstaske Posted January 10, 2022 Share Posted January 10, 2022 On 3/6/2017 at 11:16 PM, w3bsolutions said: I wouldn't recommend you to do so navigationwise, but you can simply hide it via CSS: #wrapper .breadcrumb { display:none; } Where I can find this css file, where i can hide this s**t? Link to comment Share on other sites More sharing options...
rimstaske Posted January 10, 2022 Share Posted January 10, 2022 SOLVED! Link to comment Share on other sites More sharing options...
El Patron Posted January 11, 2022 Share Posted January 11, 2022 please be aware that this can have a negative impact on user experience which is measured, any decrease in visitor experience is an impact to seo. Is breadcrumb navigation necessary? In terms of SEO, breadcrumb navigation majorly contributes to user experience. It makes browsing through site pages easier and more organic for visitors, spurring them to stay longer and view more pages. As a result, the bounce rates are going down, which is ultimately good for SEO Link to comment Share on other sites More sharing options...
rimstaske Posted January 12, 2022 Share Posted January 12, 2022 I hide category name from left side. And now in this place is Home icon>category>subcategory and etc.. i think is alright good. Link to comment Share on other sites More sharing options...
coffeefish Posted April 30, 2022 Share Posted April 30, 2022 On 3/6/2017 at 10:50 PM, nadie said: Other option, File: /themes/classic/templates/_partials/breadcrumb.tpl Comment this code: {* <nav data-depth="{$breadcrumb.count}" class="breadcrumb hidden-sm-down"> <ol itemscope itemtype="http://schema.org/BreadcrumbList"> {foreach from=$breadcrumb.links item=path name=breadcrumb} <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> {/foreach} </ol> </nav> *} Sorry for my English, Unfortunately this doesn`t work for me - please help me :( Link to comment Share on other sites More sharing options...
El Patron Posted May 1, 2022 Share Posted May 1, 2022 Hi, closing this, anyone can change anything but eliminating breadcrumbs is poor visitor experience which equals poor SEO. just because someone thinks it's a good idea (problem with open source) does not make it a good idea, worse yet someone runs off and makes a module to formalize a bad idea. Link to comment Share on other sites More sharing options...
Recommended Posts