Similar issues have been raised before but im on the latest version of D6 and all modules, and I think my issue is slightly different.

I have a hierarchical taxonomy. This module works fine until I enable the taxonomy_term view, and then only 'Home' and the last term are displayed.

So if it should be this:
Home > term1 > term2

It becomes this:
Home > term2

Thanks

Comments

theoracleprodigy’s picture

I have found that only level 1 and 2 show. So anything on a hierarchy of 3 or more does not show. Has anyone looked into this situation?

theoracleprodigy’s picture

I found a solution on another forum. Here is what worked for me:

/**
 * Implements theme_breadcrumb().
 */
function phptemplate_breadcrumb($breadcrumb) {
  if ((module_exists('taxonomy_breadcrumb')) && arg(0) == 'taxonomy' && arg(1) == 'term' && is_numeric(arg(2))) {
    require_once(drupal_get_path('module', 'taxonomy_breadcrumb') . '/taxonomy_breadcrumb.inc');
    $breadcrumb = _taxonomy_breadcrumb_generate_breadcrumb(arg(2));
  }

  return theme_breadcrumb($breadcrumb);
}

The original thread is here: http://drupal.org/node/114548
The only thing I can figure is that the term is numeric at certain levels.

gisle’s picture

Issue summary: View changes
Status: Active » Closed (outdated)

The Drupal 6 version is no longer supported. Closing this as outdated. If you think this is still relevant for Drupal 7 or Drupal 9, please open a new issue.