Hey, is it possible to change to text on the breadcrumb? I dont want to show “Startseite”, i want to use a keyword instead.
Hey combra!
Thank you for using Enfold.
What do you mean by “keyword”? You can use the following filter to modify the breadcrumb results.
// https://kriesi.at/support/topic/portfolio-item-breadcrumb-incorrect/#post-705484
// https://kriesi.at/support/topic/breadcrumbs-29/#post-718596
Cheers!
Ismael
Hey Ismael,
thanks.
add_filter( 'avia_breadcrumbs_args', 'avia_breadcrumbs_args_mod', 10, 1 );
function avia_breadcrumbs_args_mod( $args ) {
$args['show_home'] = __( 'YOUR COMPANY NAME HERE', 'avia_framework' );
return $args;
}
is exact what I needed :)
Best regards
Alex