Re: How can I remove the Breadcrumbs header from only the home page?

Solved

How can I remove the Breadcrumbs header from only the home page?

LoobyDoo
Tourist
8 0 2

I have added breadcrumbs (...edit code > Snippets > breadcrumbs.liquid) to my whole shopify 7.2.2 Pipeline theme website, but I don't want the breadcrumbs header to show on the home page, just everywhere else. Thank you for any help in what coding to add/change!

 

Accepted Solution (1)

Made4uo-Ribe
Shopify Partner
10096 2398 3030

This is an accepted solution.

Hi @LoobyDoo 

Are you familiar with codes? If it is you can add like this, this is only sample. 

{% if template == 'index' %}
<style>
.breadcrumbs {
display: none;
}
</style>
{% endif %}

 And Save. 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.

View solution in original post

Replies 3 (3)

Made4uo-Ribe
Shopify Partner
10096 2398 3030

This is an accepted solution.

Hi @LoobyDoo 

Are you familiar with codes? If it is you can add like this, this is only sample. 

{% if template == 'index' %}
<style>
.breadcrumbs {
display: none;
}
</style>
{% endif %}

 And Save. 

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
LoobyDoo
Tourist
8 0 2

This worked thank you!!

LoobyDoo
Tourist
8 0 2

Would you also be able to help me with making my breadcrumbs all uppercase?