Yes, I use a child-theme....it worked.

But the code in
helpers.layout.php is slightly different from what you said. So I changed the two instances of "get_bloginfo('name')" that I found in that file:
line 368
- Code: Select all
// return the Home link
$output .= '<a href="' . home_url() . '" class="gk-home">' . apply_filters('gavern_breadcrumb_home', get_bloginfo('name')) . "</a>";
In this case I changed the whole pattern "apply_filters('gavern_breadcrumb_home', get_bloginfo('name'))"
line 406
- Code: Select all
// output the home link only
$output .= '<a href="' . home_url() . '" class="gk-home">' . get_bloginfo('name') . "</a>";
Not sure if this is completely right but it worked.
