Tagged: 

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #851306

    and the page title too

    i tried few quick css codes but it didnt work

    those dont work

    .title_container {
    display: none;
    }
    .home div#main {
    padding-top: 117px!important;
    }
    • This topic was modified 6 years, 10 months ago by andr3y.
    #851438

    Hey andr3y,

    You can select to not show breadcrumbs in the Layout menu on the right hand side of the edit screen, please try that out.

    Best regards,
    Rikard

    #908733

    Hi Rikard,
    I would just like to remove the words “You are here:” but leave the breadcrumb
    thanks
    Tina

    #908740

    Hi Tina,

    Please add following code to bottom of Functions.php file in Appearance > Editor

    add_filter('avia_breadcrumbs_args', 'avia_remove_you_are_here_breadcrumb', 10, 1);
    function avia_remove_you_are_here_breadcrumb($args){
    $args['before'] = "";
    return $args;
    }

    Best regards,
    Yigit

    #908742

    Thank you Yigit! That worked well!

    #908816

    Hi,

    You are welcome! :)

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/
    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/
    For any other questions or issues, feel free to start new threads under Enfold sub forum and we will gladly try to help you :)

    Best regards,
    Yigit

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘How to remove You are here: Home from the page?’ is closed to new replies.