How to make a view that groups nodes by taxonothe term

drupaldrupal-6drupal-viewsviews

I'm trying to bend views and drupal to my will. So far I've produced a view to display the titles of my nodes. Each node will be assigned exactly one taxonomy term from the set {X, Y and Z}.

So for example, Node A has a title "Car drives into field, thousands don't care". Node A has a taxonomy term "Pointless".

I'd like to group all the node titles by their taxonomy term. So..

Pointless
– Car drives into field, thousands don't care
– ….
Next Taxonomy Term
– …..
– ……
– …

You get the idea. Is it doable and how do I do it? I can't find the group by option in views.

cheers SO.

Best Answer

You can use grouping when you use the table row style. Doing that you can group by any field you include in your view.

You could also try out taxonews which could work for your case.

Related Topic