Is it possible to disable the normal taxonomy listing of nodes on taxonomy term pages?

The reason I need this is I want to use a view's override of taxonomy pages BUT the default views override stops a breadcrumb module working properly. So, I want to make a term view but as a block and show it on certain pages with PHP.

Thanks

link|improve this question

This probably isnt the cleanest way but ive made a page-taxonomy.tpl.php and removed this:<?php print $content; ?> So far it seems this solution will work for my site, but id still like to know the proper way to do it. – jdln Jun 28 '11 at 19:45
feedback

2 Answers

up vote 0 down vote accepted

If all you want to do is override the taxonomy term pages with a View, but NOT use the default view, you could create a custom module implementing hook_menu() or you could also take a look at the Taxonomy Redirect module.

From the Taxonomy Redirect page:

This module allows the administrator to change the destination of Taxonomy Term links.

link|improve this answer
feedback

This probably isn't the cleanest way but I've made a page-taxonomy.tpl.php and removed this:<?php print $content; ?> So far it seems this solution will work for my site, but I'd still like to know the proper way to do it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.