Tell me more ×
Drupal Answers is a question and answer site for Drupal developers and administrators. It's 100% free, no registration required.

I have a custom content type (say event) that has the ability to be a part of two taxonomy terms (Headliner and Featured). When an event is created, the user has the ability to select when an event is created, check boxes are present that allows the user to select both, one, or neither.

I am wanting to create one view that will look at all of the events, but sort them out based on the selection of that term. But, I don't want them to repeat.

So let's say I have four events with the following taxonomy selections

  • Event 1 - Headliner and Featured
  • Event 2 - None
  • Event 3 - Headliner
  • Event 4 - Featured

I want it to display Headliners first, then Featured, then everything else. So the results will be the following:

  • Headliners:
    • Event 1
    • Event 3
  • Featured:
    • Event 4
  • What's left:
    • Event 2

Is this possible in a single view? Thanks for the help!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.