I have done quite a bit of reading, including implementing some of Greenash.net's fixes for selecting the correct vocabulary for breadcrumbs.
But, I can't figure out the correct place in the code to start hacking for this change: I want the breadcrumb link on a node display page to be different for different node types, e.g.:
if the node type is 'flexinode-1', then the breadcrumb links should be /my-flexinode-1-display/$tid
if the node type is 'flexinode-2', then the breadcrumb links should be /my-flexinode-2-display/$tid
and for all others, it should be /taxonomy/term/$tid
I already have browsing the main category working with breadcrumbs custom-set up and down the heirarchy, but as soon as the visitor clicks a node, the node display takes over and I don't seem to be able to override the breadcrumbs there (drupal seems to ignore me and set its own).
Site in question is http://testing.rpgcomplete.com ... if you click down categories, checking the breadcrumb trail as you go, you'll see they're right (/rpg-product-list/$tid) until you display a node. Then they're wrong.
Suggestions? Pointers? The best file to hack?