Viewing 1 replies (of 1 total)
  • That’s the WooCommerce breadcrumb. There are different ways to delete it.

    First, check your theme settings. There may be a checkbox to disable it.

    There is a code snippet here to remove it.
    https://docs.woocommerce.com/document/customise-the-woocommerce-breadcrumb/
    The code snippet goes in functions.php for your child theme.

    Or you can hide it with some custom css:

    .woocommerce-breadcrumb {
      display:none
    }
    

    If you have WP 4.7, custom css is entered at:
    Dashboard > Appearance > Customise > Additional CSS

Viewing 1 replies (of 1 total)
  • The topic ‘Nav bar remove from top of page’ is closed to new replies.