By onlinevariable on
I'm using drupal 5.10
I need a better way of displaying my taxonomy for my blogs.
Currently I have two vocabulary defined for blogs Channel and Tags.
The current display lists out all the terms in both vocabulary as a series of terms
Submitted by author on Mon, 11/03/2008 - 23:27 in
term1 term2 term3 term4 term5
I need to change that to something like
Submitted by author on Mon, 11/03/2008 - 23:27 in
Channel : < channel terms>
Tags : < tag terms>
Is there a way to do this..
--OnVar
http://onvar.net/
Comments
you'll need to tweak your
you'll need to tweak your template files by content template (module contemplate) or by the template files in your theme.
in template.php create a function themename_custom_terms() where you use http://api.drupal.org/api/function/taxonomy_node_get_terms/5 o get all the terms of your node sorted by vocabulary and weight. create the output as wished (don't know is link creation goes automatically) and exchange in your template the part where $terms is printed.
------------------------------------------------------
Remember: I compute you!