Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #24135

    How can I get rid of the breadcrumbs without removing the header or doing display:none tricks?

    #122476

    Hi,

    Simply add this on your custom.css or Quicsk CSS

    .breadcrumb {
    display: none;
    }

    If you want to remove for a specific page, inspect the page then look for the unique body class.

    .page-id-2323 .breadcrumb {
    display: none;
    }

    Regards,

    Ismael

    #122477

    Well, that´s clear but as I wrote in my first post: How can I do it WITHOUT doing display:none tricks ;-) Is there a setting, a filter or something like this?

    #122478

    Hi!

    Add following code to functions.php.

    add_filter('avf_title_args', 'remove_bread_avia', 10, 2);
    function remove_bread_avia($args, $id){
    $args['breadcrumb'] = false;
    return $args;
    }

    Best regards,

    Peter

    #122479

    Thanks Dude. Works perfect.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Get rid of breadcrumbs’ is closed to new replies.