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!