Is it possible to create a view to only see the top level terms in a vocabulary? I can't seem to get it to stop listing all terms, using a vocabulary ID argument. I just want to see the top level parents.
|
feedback
|
|
This blog post outlines how to do it: http://blog.raisedeyebrow.com/2011/01/show-only-top-level-terms-in-a-term-type-drupal-view/ Essentially you need to add a relationship of term parent. Then add a filter for term name and select is empty (null) using the parent relationship. Effectively only showing terms that have no parent. | |||
|
feedback
|
|
Yes its possible but not sure with views.Below is one way to get the top level terms in vocabulary.
taxonomy_get_tree returns a flat array of terms so you can use that while printing. Regards, Chintan. | |||
|
feedback
|
|
You can add a filter of OR You could add a template file for a field in your view to decide what terms to show. For example, in your view, you could simply add a field of To only show term names of the terms that are the top level of a vocabulary, use the following (or similar) in your new template file:
| |||
|
feedback
|