Jun
03
2011
Drupal 6 How to put taxonomy description into taxonomy views page?
By Vid
and has no comments yet.
I was wrestling with adding taxonomy term descriptions into list page this today and found this views 2 snippet for a php header to do the trick:
$tid = arg(2); $term = taxonomy_get_term($tid); if (module_exists('i18ntaxonomy') && i18ntaxonomy_vocabulary($term->vid) == I18N_TAXONOMY_LOCALIZE) { $description = i18nstrings("taxonomy:term:$term->tid:description", $term->description); } else { $description = $term->description; } print $description;
via How to put taxonomy description into taxonomy views page? | drupal.org.
