Can anybody help me how to get the list of taxonomy terms as a list on the NODES with the Taxonomy name before it?

Something like this:

Countries :
• Germany
• Holland
• Belgium

Ages:
• 1-15
• 16-21
• 22-45

Please help!
Thnx,
Peter

Comments

petergrob’s picture

Assigned: Unassigned » petergrob
ainigma32’s picture

Status: Active » Fixed

Take a look at /themes/garland/node.tpl.php and modify the file around line 21 so it reads:

<!-- .... snip .... -->
    <div class="meta">
    <?php if ($taxonomy): ?>
	  <pre><?php print_r($taxonomy) ?></pre>
      <div class="terms"><?php print $terms ?></div>
    <?php endif;?>
    </div>
<!-- .... snip .... -->

I think that should get you the info you need.

- Arie

petergrob’s picture

Thnx Arie,

I will try this.

Peter

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.