Views show child taxonothe terms

drupalviews

I have a vocabulary like this:

Parent 1
- Child 1
- Child 2
- Child 3
Parent 2
- Child 1
- Child 2

Now i would like to use a view to create a list of all the child terms under one parent.
So i thought i just created a term Views and pass the Parent term as an argument and it will filter out all the child terms of that parent.
But this doesn't seem to be possible with the standard views.

The only thing that's possible is to get the parent term when you supply the child term, but not the other way around.

Anyone an idea how i can do this?

Best Answer

The Views module has a taxonomy_term View which you can use. You need to edit the View so that under the Arguments -> Taxonomy: Term ID (with depth) -> change the depth so that you can grab as many levels of child objects as you want. If you want to exclude the parent item, you can do this by adding a filter to exclude the parent term.

Related Topic