I would like to theme the default taxonomy page /taxonomy/term/% in Drupal 6, based on how many nodes has a specific term. If there's only one node with term special, the page /taxonomy/term/special would show full node and if term review would have several nodes attached, the page /taxonomy/term/review would show only teasers (default).

Should I make custom module with preprocess_node function or/and alter node-taxonomy.tpl.php file with something like this?

$vid = 5;  // Vocabulary I use.
$term_count = taxonomy_term_count_nodes(); // How to get $tid?
if ($term_count == 1) {
  node->body; // Show full node
}
  else {
  node->teaser;  // Show only teasers
}

I managed to accomplished this with views (views_php module), but it broke down taxonomy menu which was made with taxonomy_menu & hierarchical_select.

link|improve this question
feedback

1 Answer

Perhaps could try implementing theme function _taxonomy_term_page() in your theme template.php based on existing function in /modules/taxonomy.pages.inc.

This would allow you to customise the behaviour based on term id.

You may also need to create a new function in your theme template.php based on taxonomy_render_nodes() in /modules/taxonomy.module, which uses node_view($node->nid, 0) to render full versions of the nodes or similar to render the nodes in the way that you would like.

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.