Closed (fixed)
Project:
Views (for Drupal 7)
Version:
6.x-2.9
Component:
block displays
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
15 Feb 2011 at 23:03 UTC
Updated:
2 Mar 2011 at 19:01 UTC
Hi,
I have two vocabularies, A and B. Both apply to content type Page and both use (and only use) Tags.
For each vocabulary, I want to display nodes associated with each (user submitted) Term.
ie:
For vocabulary A, users submitted three tags: Dog, Cat, Rabbit.
I want to display something like this:
Dog (the tag's name)
--- Node 1
--- Node 3
Cat
--- Node 2
--- Node 4
Rabbit
---Node 6
---Node 8
How can I do that?
Thanks,
Comments
Comment #1
dawehnerFirst add a field: taxonomy: all terms
Then goto the style settings and choose to groupby this field you added.
That's it together with some css
Comment #2
minghui.yu commentedThanks. But it shows something like this:
Dog, Cat
---Node 1
---Node 2
Cat, Rabbit
---Node 3
I want each term listed individually, followed by nodes with this term. A node can have multiple vocabularies and each vocabulary is tag style.
Thanks.