Hi,
I’ve installed codestyling-localization plugin but can’t find a “Home” string to translate?
Thanks
Hi axelfx07!
Thank you for coming back.
You can use the following code to change the text.
Put in in functions.php at the bottom and replace the text:
add_filter( 'avia_breadcrumbs_args', 'my_avia_breadcrumbs_args', 10, 1 );
function my_avia_breadcrumbs_args($args)
{
$args['show_home'] = 'My Home text';
return $args;
}
Cheers!
Günter