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 / …”
still waiting for reply…
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
Wow that did not work at all… syntax errors took entire website offline, so had to undo changes
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’ ),