Delete breadcrumbs from homepage & collection pages

Hi, using Prestige template (but Pagefly to create my homepage & collection page), I am looking to delete Breadcrumbs from my homepage & collection page.

I used this code on my theme.scss.liquid:

.template-customers-login .breadcrumb {
  display: none!important;
}

But this code deleted all breadcrumbs. How could I adjust it so it just delete breadcrumbs from certain pages?

Thanks a lot

Vincent

1 Like

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

@VincentCavret

Please share your store URL.

Hi,

this is oneoffedition.com

Shopify managed domain:

Domain Name Status Auto-renew Emails

Thanks

1 Like

@VincentCavret

I can’t see breadcrumb on your home page and collection page. I think you solved the problem?

Let me know.

1 Like

Unfortunatelly the code I past delete breadcrumbs for all pages. But I just want to delete it from hompage and collection pages. This is what I want to adjust it.

1 Like

@VincentCavret

Please remove the old added code and add the following new code at the bottom of your assets/theme.scss.liquid file.

.template-index .breadcrumb, .template-collection .breadcrumb{ display:none !important; }

Hope this works.

Thanks!

1 Like

Hi, it seems to be working, many thanks!

1 Like