I've been trying to customize taxonomy page template in my Drupal 6 site.
What I did was
page-taxonomy-term.tpl.php
node-taxonomy.tpl.php
Entered following code in template.php:
function templateNAME_preprocess_node(&$vars) {
if (arg(0) == 'taxonomy') {
$suggestions = array(
'node-taxonomy'
);
$vars['template_files'] = array_merge($vars['template_files'], $suggestions);
}
My Taxonomy page is picking up page-taxonomy-term.tpl.php
correctly but it just doesn't pick up node-taxonomy.tpl.php
and I tried just almost everything.
below few tips and attempts to do: