Okay
  Public Ticket #2546591
breadcrumbs website
Closed

Comments

  • oswaldopz started the conversation

    How I can stop showing the breadcrumbs on WooCommerce?

  •  8,851
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .nectar-shop-header .woocommerce-breadcrumb {
        display: none !important;
    }

    Thanks


    ThemeNectar Support Team 

  • oswaldopz replied

    I already add the code but nothing changed. 

  •  2,965
    Andrew replied

    Hi there,

    Try the following css:

    .woocommerce .woocommerce-breadcrumb {
        display: none;
    }
    

    Thanks.