Have you looked at Taxonomy List?
Nancy Injustice anywhere is a threat to justice everywhere. -- Dr. Martin L. King, Jr.
From: Lynn Stott (Stott Design) lynn@stottdesign.com
To: support@drupal.org Sent: Wednesday, July 13, 2011 8:08 AM Subject: [support] Taxonomy
I'm trying to create two pages, one for each taxonomy term (w/ taxonomy description) and one for all taxonomy terms (w/ descriptions) . With Drupal 6, I accomplished the first option via two views and this function my template.php
function lax_taxonomy_term_page($tids, $result) { $output = ''; $output .= views_embed_view('taxonomy_term_header', 'default', $tids[0]); $output .= views_embed_view('product_grid_view', 'default', $tids[0]);
return $output; }
In summery, here's what I'm looking for. I'd like this to come from a view setup, not teaser output.
Option 1: Taxonomy term title Taxonomy term description Related node content
Option 2: Taxonomy term title Taxonomy term description Related node content
Taxonomy term title Taxonomy term description Related node content
Taxonomy term title Taxonomy term description Related node content ...
Any suggestions?
Thanks, Lynn
-- [ Drupal support list | http://lists.drupal.org/ ]