Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #387442

    Hi,

    I’ve installed codestyling-localization plugin but can’t find a “Home” string to translate?

    Thanks

    #387694

    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.