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

    The standard breadcrumb is “home / title / …”

    How do I change the word “Home” in the enfold-breadcrumb into another title?

    I would lik to change it to: “Nieuwe Dag / title / …”

    #234337

    still waiting for reply…

    #234656

    Hey!

    Thank you for using the theme. I hope you’re doing great.

    Please add this on functions.php:

    add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1);
    function avia_change_home_breadcrumb($args){
     $args['show_home'] = 'CHANGE THE HOME TEXT HERE';
    return $args;
    }

    Regards,
    Ismael

    #237873

    Wow that did not work at all… syntax errors took entire website offline, so had to undo changes

    #237877

    Just found the answer on another page, which works great: https://kriesi.at/support/topic/changing-blog-name-only-in-breadcrumbs-of-enfold/

    Edit framework > php > class-breadcrumb.php , find this code:

    ‘show_home’ => __( ‘Home’, ‘avia_framework’ ),

    Replace it with:

    ‘show_home’ => __( ‘Atelier’, ‘avia_framework’ ),

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘Changing "home" in breadcrumb’ is closed to new replies.