From a usability standpoint it is not kosher to provide a link to the active page, however it is nice to have this information in the breadcrumb list. It would be nice to have the ability to provide a title without a path that would allow the last title in the breadcrumb trail to not be linked so that you would have the following:

titleLink > titleLink > title

Comments

abramo’s picture

I second that - possibly to be made available as an option.

moshe weitzman’s picture

the drupal way to date has been to append the title at the theme layer but i agree that this module could offer the option to append the page title at the end. could be a checkbox option, independant of the path.title textareas

vito_swat’s picture

I think title is not the only option. Sometimes it can be usefull to ad some breadcrumb w/o link in the middle or to use sth different instead of title (i.e. date of creation). Maybe (like ) in links section to indicate that this breadcrumb has no link?

vito_swat’s picture

One more time last sentence:
Maybe <none> (like <front>) in links section to indicate that this breadcrumb has no link?

johnalbin’s picture

It looks like Jeff is working on this issue in CVS.

Jeff, care to create a 5.x-1.x-dev release to get more exposure to development work?

ekrispin’s picture

Here is a simple patch to add the support for unlinked breadcrumb items: put <none> instead of a path for any item in the breadcrumb you do not want to be linked (can be the last item as well as any other one).

The patch -

In function custom_breadcrumbs_nodeapi, replace line 59:

$trail[] = l($title, trim($paths[$i]));

with:

if (trim($paths[$i]) == '<none>') {
             $trail[] = $title;
          }
          else {
            $trail[] = l($title, trim($paths[$i]));
          }
David Lesieur’s picture

Status: Active » Fixed

This feature is already implemented in the HEAD version.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.