Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #24851

    Hi.

    i have the “you are here:” notification in the website theme.

    how can i disable/ remove it?

    BR,

    Ben

    #124982

    Did you want to remove the path afterwards as well or just the text?

    #124983

    If you only want to remove the text see this post

    https://kriesi.at/support/topic/breadcrumbs-change-you-are-here

    If you want to turn off breadcrumbs all together then change

    'breadcrumb' => true,

    in functions-enfold.php to

    'breadcrumb' => false,

    #124984

    Thanks a lot man!

    works like a charm.

    another little question: under the logo i also see the page name. how can i remove it to?

    BR,

    Ben

    #124985

    If I understand correctly, you just don’t want the pages title to be visible in that bar? I don’t know exactly where it’s located in the code but if you add this code to your quick css or custom.css this will make it disappear

    .main-title {
    display: none;
    }

    #124986

    Hi!

    If you want to remove the page title completely I’d suggest to open up functions-enfold.php and to replace:

    'title' 		=> get_the_title($id),

    with

    'title' 		=> '',

    Regards,

    Peter

    #124987

    thanks Dude!

    works great!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘"you are here:"’ is closed to new replies.