Just upgraded to 7.x-2.5. I have the front page link enabled "Include the front page as a segment in the breadcrumb" but instead of showing a "Home" link it shows simply "<" as the link text. The link used in the menu item is "" but changing that to an absolute URL did nothing.. any besides I don't believe this module actually relies on the menu item URL anyway. Clearing all caches didn't help either.

For now I just disabled the front page segment of the breadcrumb.

Comments

AndyD328’s picture

Same problem here.

Can fix with a change to easy_breadcrumb.blocks in the includes folder

Remove line 37:
$breadcrumb[] = l($front_text, NULL, array('attributes' => array('class' => $segments_classes)));
Add at line 37:
$breadcrumb[] = array('content' => $front_text, 'class' => $segments_classes, 'url' => '');

Should that be a patch file?

Many thanks for sonemonu for the great module

sonemonu’s picture

Status: Active » Closed (fixed)

Fixed in 7.x-2.6. Thanks!

caspervoogt’s picture

Looking good... in 7.x-2.7 too - thanks!