Reputation: 520
I have a content-type Team Members
. Each Team Member has a Position
. Each Position
has a Category
.
E.g.:
Category 1
Category 2
If you create a new peace of content using the content-type Team Member
you should be able to choose one and only one Position
.
I then want to render all the Team Members in the order of the above example. So First you'll see the title of the first Category, then the title of the fist Position, then all team members with that position etc.
Can anyone tell me what's the best solution for this?
Upvotes: 0
Views: 175
Reputation: 196
It sounds like you need to:
create a multilevel taxonomy
add a term reference field to your Team Members content type (you can try Simple Hierarchical Select module if you have long/complex hierarchy)
use views ( possibly a combination of Views Tree and Views Field View ) to display it the way you want
Upvotes: 1