Even though I use Drupal on day to day basis, I have very little experience in theming, except basic CSS stuff.

So, I've been dealing with this for couple of days now, and I still can't find solution - I want to hide taxonomy terms within Chameleon theme, rendering under all teasers and nodes - because they don't look very pretty and because of it is not necessary for me to use it since I plan to utilise Tagadelic module.

I would appreciate if someone would help me with this.

Comments

matthew_ellis24’s picture

I just did this in Denver for drupal 5. Open up node.tpl.php in your theme directory and delete or comment out:

<span class="taxonomy"><?php print $terms?></span>

That will remove it from ALL pages

ben.sullivan’s picture

You want to delete or comment out line 23 (Garland) in the node.tpl.php that's located in your theme directory (i.e. /public_html/themes/YOURTHEME):23 <div class="terms"><?php print $terms ?></div>