It was working in 7.x-2.x. As i checked the codes, this module uses `hook_init` instead of `hook_page_alter` in 7.x-3.x. What's the reason?
As in Drupal's `taxonomy.pages.inc` file, line 26 (Drupal 7.21), it writes:
// @todo This overrides any other possible breadcrumb and is a pure hard-coded
// presumption. Make this behavior configurable per vocabulary or term.
$breadcrumb = array();
while ($parents = taxonomy_get_parents($current->tid)) {
$current = array_shift($parents);
$breadcrumb[] = l($current->name, 'taxonomy/term/' . $current->tid);
}
So obviously 3.x cannot work around this while 2.x can.
Comments
Comment #1
kalabroHere is commit message: http://drupalcode.org/project/path_breadcrumbs.git/commit/a09a584d0b494e...
Yes, I confirm that default taxonomy term page not supported now. Quick solution is to turn on default «Taxonomy term (Content)» view.
Comment #2
petu commentedIt's a pity that taxonomy term's page not supported for now :(.
Comment #3
spleshkaThanks, commited/pushed to 7.x-3.x.