• I am trying to find a way to remove breadcrumbs from the pages on my site but have not been able to do so. I note when I look at the css there is a breadcrumbs wrapper with code but I am not sure how to modify this, if indeed this is directly related. I am not very code savvy and would need a simple description of how to apply any modifications. Thanks in advance.

Viewing 1 replies (of 1 total)
  • Did you mean breadcrumbs in woocommerce page?
    If so, there are 2 ways:
    1. add this custom css ( you can use simple custom css plugin)
    .woocommerce .woocommerce-breadcrumb { display: none; }

    2. use child theme and add this code in functions.php file in child theme folder.

    add_action( 'init', 'jk_remove_wc_breadcrumbs' );
    function jk_remove_wc_breadcrumbs() {
        remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20, 0 );
    }

Viewing 1 replies (of 1 total)
  • The topic ‘Twenty Fourteen – Remove Breadcrumbs’ is closed to new replies.