Hi,

I think this has to be a problem with my site, but when I go to the FAQ page the breadcrumb doesn't show at all. It should just have 'Home' as the breadcrumb, but nothing shows up. Does anyone know what might be causing this problem? It doesn't happen on any other page.

Thanks for the help,
Stephanie

Comments

stella’s picture

Assigned: Unassigned » stella

I think it may be a problem with your site as you suggest. The breadcrumbs appear perfectly for me, both with and without categorization enabled. I've only tested it with the garland theme however. Perhaps it's something to do with your theme. What theme are you using and does it happen for other themes? Have you done any customisation?

Cheers,
Stella

nancydru’s picture

There is a setting for that; I can't remember where it is off the top of my head.

ssherriff’s picture

I have made my own theme, but I've gone back to garland just to test, and it still doesn't show up. It is really strange, because all other pages have at least home. I have the module taxonomy_breadcrumb installed, but I've excluded faq content from being affected by it. I can't see any other module that should mess it up...hmm...I might have to go through and disable modules until I figure it out.

stella’s picture

Hi ssherriff,

Any luck determining where the problem was?

Cheers,
Stella

stella’s picture

Status: Active » Closed (fixed)
jmcclelland’s picture

I had the same problem.

It turns out that I had an errant entry in the menu table:

mysql> select * from menu where path = 'faq';
+-----+-----+------+----------------------------+-------------+--------+------+
| mid | pid | path | title                      | description | weight | type |
+-----+-----+------+----------------------------+-------------+--------+------+
| 472 |   1 | faq  | Frequently Asked Questions |             |      1 |   48 | 
+-----+-----+------+----------------------------+-------------+--------+------+
1 row in set (0.01 sec)

mysql>

I deleted it:

mysql> delete from menu where path = 'faq';
Query OK, 1 row affected (0.00 sec)

mysql>

And then cleared my cache (drush cache clear or DELETE FROM cache_menu) and the breadcrumb appeared.