Hi,
how can I change the ‘HOME’ text in breadcrumbs? I’ve read in the woocommerce dos this
/**
Rename “home” in breadcrumb
*/
add_filter( ‘woocommerce_breadcrumb_defaults’, ‘wcc_change_breadcrumb_home_text’ );
function wcc_change_breadcrumb_home_text( $defaults ) {
// Change the breadcrumb home text from ‘Home’ to ‘Apartment’
$defaults[‘home’] = ‘Apartment’;
return $defaults;
}
but it doesn’t work in tyche.
I’ve also tried changing class-tyche-breadcrums.php, but no affect.
Thanks very much!
Breadcrumbs show names of the pages,
if this is not the case then please use search with this plugin and search for a home in the theme files, all changes must be done in the child theme: