I have one content type with one taxonomy field with parent->child terms. In one view I need to group nodes by the child selected but also by the parent.
Expected output
- parent 1 <- taxonomy parent
- term 1 <- taxonomy child
- title 1 <- node
- title 2
- title 3
- term 2
- title 4
- title 5
- parent 2
- term 3
- title 6
- title 7
- term 4
- title 8
- title 9
Current output
- parent 1
- term 1 & title 1
- term 1 & title 2
- term 1 & title 3
- term 2 & title 4
- term 2 & title 5
- parent 2
- term 3 & title 6
- term 3 & title 7
- term 4 & title 8
- term 4 & title 9
Current view config
- Relationships
- Taxonomy terms on node <- child
- Term taxonomy <- parent
- Format
- Unformatted list
- Grouping field: parent
- Fields
- Taxonomy term <- parent
- Exclude from display
- Taxonomy term <- child
- Content title <- node
- Filter
- Content type (= My content Type)
Thanks!