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.