Removing terms from Drupal Node

Question:
How to remove terms from drupal node

To remove the taxonomy terms being being displayed from nodes simply update the theme's node.tpl.php.

Just remove the if ($terms): ?> section so that $terms is not rendered?

If you just want to hide the taxonomy terms for a particular node type, create a node-[type].tpl.php in your theme and remove the code.

Taxonomy: