Closed (fixed)
Project:
Custom Breadcrumbs
Version:
6.x-2.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
16 Jun 2009 at 02:10 UTC
Updated:
12 Aug 2009 at 14:20 UTC
I've got a custom breadcrumb for a node type set up like so:
titles:
Taste
Products
paths:
taste
taste/products
I've also checked 'force the active trail' so that menu items are correctly 'active'
When I go to view the node, the breadcrumb is like so: Home > Taste > Products > Products (Products is appended as a unlinked title via a Zen theme setting))
The page is also renamed to 'Products' instead of the node's title
It was my assumption that the node's breadcrumb should be Home > Taste > Products > [NODE'S TITLE] and when I've unchecked 'Force the active trail' it works as assumed.
Comments
Comment #1
MGN commentedFor a node-type breadcrumb, the title should only show up at the end if you use the [title] token (or some equivalent to this). You would set it up like this:
titles:
Taste
Products
[title]
paths:
taste
taste/products
There is an option for taxonomy-type custom breadcrumb to append the node title at the end, but this option is not used for node-type breadcrumbs.
Perhaps the Zen theme was handling your breadcrumb for you? Not sure, but try varying your titles and paths slightly to be sure that your breadcrumb is in fact being set by custom breadcrumbs. You could also try switching to a core theme and verify everything is working before trying a contrib theme.
If this doesn't do it for you, let me know and I'll start looking into the force the active trail code....
Also, let me know which of the custom_breadcrumbs modules you have enabled, and what basic/advanced settings you have enabled for custom breadcrumbs.
Comment #2
bsuttis commentedMy breadcrumb is indeed being set by Custom Breadcrumbs. The title is being appended via an option in my theme config settings (thus why I don't need to use a [title-raw] token), however this title gets replaced when I choose 'Force the active trail'.
I haven't installed any of the other custom_breadcrumbs modules (paths/views/taxonomy)
Changing themes doesn't fix the issue -- the html head title is even replaced, let me know if i've provided sufficient info.
Comment #3
MGN commentedSorry, at this point this is by design since the force the active trail code has to override the theme. I would rather avoid this, but don't have another solution ready at this point.
Comment #4
MGN commentedI've modified the active trail code and I believe this issue is now fixed. Can you test the next dev snapshot of 6.x-2.x-dev (or the current cvs) and change the status if custom breadcrumbs is still interfering with your theme settings?