Hello,
PLease take a look at his file:
..\sweetdate\framework\functions\breadcrumb.php around line 104. There you have the function where the breadcrumbs are created.
COPY CODE
if ( !is_front_page() && $args['show_home'] ) {
if ( is_multisite() && true === $args['network'] ) {
$trail[] = '<a href="' . network_home_url() . '">' . $args['show_home'] . '</a>';
$trail[] = '<a href="' . home_url() . '" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home">' . get_bloginfo( 'name' ) . '</a>';
} else {
$trail[] = '<a href="' . home_url() . '" title="' . esc_attr( get_bloginfo( 'name' ) ) . '" rel="home">' . $args['show_home'] . '</a>';
}
}
If you want to change the text “Home” you need to modify thi array from the same file ( around line 25 )
COPY CODE
$defaults = array(
'container' => 'ul', // div, nav, p, etc.
'container_class' => '',
'item_tag' => 'li',
'separator' => '',
'before' => '',
'after' => false,
'front_page' => true,
'show_home' => __( 'Home', 'kleo_framework' ),
'network' => false,
'echo' => true
);
Thank you,
Catalin
Hi there!!! Help others from the community and mark any reply as solution if it solved your question. Mark as a solution