Drupal: Removing Taxonomy Node Titles

Drupal has a bad habit of displaying the taxonomy term title when viewing terms at the Node level. It's not a View issue - you have to make the change within the Taxonomy module (which we are qualifying as a hack for now until the "view title on node display" feature is added to the Taxonomy Admin. Here's how you do it.

Drupal v. 5.1
Taxonomy v. 1.3

1) Open the Taxonomy module file with a Text/Code editor (preferably one that displays code lines). The file is found drupal_root_folder>modules>taxonomy>'taxonomy.module'

**(We always recommend making a backup copy of the file, e.g. 'taxonomy_bkup.module', prior to editing.)

3) Code line 1359 drupal_set_title($title);
(The title of this section, in comments, is 'Menu callback; displays all nodes associated with a term.' - it's located about 95% toward the bottom of the document.)

3) Edit as drupal_set_title(''/*$title*/);

4) Save the file to the original location

You should be good to go.

For what it's worth, we've just uploaded a copy of the edited taxonomy module. You can just download, unzip and use our file as your taxonomy module.

AttachmentSize
taxonomy.module.zip12.9 KB