I want a page that displays top-level taxonomy and then tags underneath. For example...

Colors
Red
Blue
Orange

Shapes
Circle
Square

Numbers
Whole
Fractions.

This would all be listed on one page. Clicking something like "Red" would take to a page with all "Red" - tagged Articles.

My first thought is One Block for each Taxonomy. Then have three blocks (one on top of the other).

But how would I list The tags within the taxonomy? I've tried with Filters and fields but I always get an empty list even when I have tagged stuff.

Comments

bwv’s picture

There are, I believe, at least two or three modules that will do this for you. Have you looked through this list?

http://drupal.org/project/Modules/category/71

----------------------------------------------------------------------
http://music.bwv810.com
http://davidhertzberg.com

I am a writer, researcher and solo drupal freelancer.

cog.rusty’s picture

One possible solution is the http://drupal.org/project/taxonomy_list module.

See what information it displays in its demo page http://nanwich.info/taxonomy/vocabulary/2+1 Obviously it displays 2 vocabularies, called "Glossary" and "Changelog", with their terms and their node counts. The formatting is adjustable, it can easily become a single column.

Documentation here:
http://drupal.org/node/160433
http://drupal.org/node/258166

In the second of those pages you can also see how you can produce output for a page or for a block.

WorldFallz’s picture

you can also code it if you want more control over the formatting: adapt this snippet with the taxonomy_get_vocabularies function.

===
"Give a man a fish and you feed him for a day.
Teach a man to fish and you feed him for a lifetime."
-- Lao Tzu
"God helps those who help themselves." -- Benjamin Franklin
"Search is your best friend." -- Worldfallz

codebutcher’s picture

Thanks, I used the Directory module. It was exactly what I needed.