Home Forums Basel support forum How to hide breadcrumbs

How to hide breadcrumbs

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #3727

    ginhim
    Participant

    Hey there,

    How can I hide the breadcrumbs on the product detail pages?

    I tried this code, pasted it in the global custom CSS section but it didn’t work.

    .page-title .entry-header .breadcrumbs {
    display: none;
    }

    Thanks!

    #3739

    Artem Temos
    Keymaster

    Hi,

    Here is the right code snippet to hide breadcrumbs on the single product page

    .single-breadcrumbs-wrapper .woocommerce-breadcrumb {
        display: none;
    }

    Regards

    #3763

    ginhim
    Participant

    Thanks that worked. How do I hide the grey background and arrows that were in the breadcrumb strip on the product pages too?

    #3775

    Artem Temos
    Keymaster

    Use this code

    .single-breadcrumbs-wrapper {
        display: none;
    }
    
Viewing 4 posts - 1 through 4 (of 4 total)