Is there a solution available to allow D-6 to display 'usable' breadcrumbs to the end user? Searching,searching,searching yields a million discussions with no clear direction.... hence my question here. :-)

I've tried Custom Breadcrumbs and Menu Breadcrumb so far. I like Menu Breadcrumb the best; but am having a significant problem with the breadcrumb on the user login page (related?: undesesirable and menu weights)

I'm certainly not opposed to adding a function into template.php. Are breadcrumbs available in D-6 as a function? Does D-6 breadcrumb only work for 'navigation'? Is it possible to just get the menu trail in the breadcrumb similar to Menu Breadcrumb without the associated 'user login page' failure?

Comments

matt_harrold’s picture

You can set the breadcrumbs yourself with a bit of code like:

  $links=array(l('Home','<front>'),l('Somewhere else','yourpath'));
  drupal_set_breadcrumb($links);

See: http://api.drupal.org/api/function/drupal_set_breadcrumb/6

I don't know exactly what you expect a breadcrumb to look like, but I'm sure you'll be able to make it with this function.