Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #305655

    Hello.
    How to change first word “Home” in breadcrumbs on the another word in a different language?
    Sorry, my english is not good=)

    #305657

    Hi Bearded!

    Please add following code to Functions.php in Appearance > Editor and adjust as needed

    add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
    function avia_change_home_breadcrumb($args){
    $args['show_home'] = 'Another Word';
    return $args;
    }

    Best regards,
    Yigit

    #305662

    It works. Thank you.

    #305664

    Hey!

    Glad we could help you. Enjoy the theme.

    Best regards,
    Günter

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘How to change first word "Home" in breadcrumbs?’ is closed to new replies.