How can I prevent the internal Drupal search results from showing taxonomy terms? I use taxonomy to classify certain nodes for administration reasons, and when I search for content, those taxonomy terms are visible in the search snippets. How can I prevent Drupal from indexing taxonomy terms??

Thanks for any help you can provide!

Comments

IncrediBody.com’s picture

Any ideas?

nfw’s picture

subscribing - I need this too. Did you come up with a solution?

Alexandros78’s picture

I someone finds out how to do this, please let us know!

Alexandros78’s picture

Just open the node.module and comment the following lines like this:

// Fetch terms for snippet.
/*if (module_exists('taxonomy')) {
$node->body .= taxonomy_nodeapi($node, 'update index');
}*/