I am working with taxonomies and nodes and I want to show them in a view.

My taxonomies are:

Product Category
- Product Line
-- Product
--- Features (Node)

I want to show this tree in a view but I can not get a good result.

For example I have:

Product category (phones)
- Product line (phone a)
-- Product (phone 104)
- Product line (phone b)
-- Product (phone 202)
- Product line (phone a)
-- Product (phone 124)
- Product line (phone b)
-- Product (phone 242)

And I want this result:

phones
phone a
phone 104
phone 124
phone b
phone 202
phone 242

Is this possible?

link|improve this question

40% accept rate
feedback

2 Answers

You can use the api function taxonomy_get_tree

With his function you can get your tanonomy structure. Then you can make a custom template.

link|improve this answer
feedback

Try http://drupal.org/project/views_tree.

There is Drupal 6 version available. In case of Drupal 7 version, check the issue http://drupal.org/node/1044362.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.