I'm creating a web site, where admin can
1. Create news (in several categories)
2. Create static pages
3. Create polls
I've encountered one interesting problem.
So, my steps:
1. Created 'news' content type (using 'story').
2. Created vocabulary 'News', content type - 'news', required for node to be here - 'true'
3. Created term 'General' in vocabulary 'News'
4. Created term 'CSS' in vocabulary 'News'
5. Created vocabulary 'Static pages', content type - 'page', required for node to be here - 'true'
6. Created term 'General' in 'Static pages'
7. Created term 'Partners' in 'Static pages'
So, we have two vocabularies, one vocabulary for each content type, and two terms for each vocabulary.
What I DON'T understand now:
what's going on with breadcrumbs?
if I create news and put them in 'news/general' - I get
Home >> general
in breadcrumb.
If I create static page and put it in 'Static pages/ general' - I get
Home >> general
in breadcrumb. Again.
Though I want to see Home >> News >> General
and
Home >> Static Pages >> General
I can't see vocabulary name in breadcrumbs. Why?
May be vocabularies were not created to be shown in breadcrumbs?
The only way that I see now is to create module that will add link
taxonomy/term/1+2+3+all+terms+in+my+vocabulary
and name the link '[MyVocabularyName]'
May be I misunderstand something and there are easier ways?