12 Dec
2005
12 Dec
'05
6:45 a.m.
Does anyone have any ideas of how I can change the title on the taxonomy/term page to something nicer without having to hack too much of core.
You could use a _help hook, or similar, like: function example_help($section) { if ((arg(0) == 'taxonomy') && (arg(1) == 'term)) { $tids = arg(2); $title = [however you want to parse it]; drupal_set_title($title); } } I use a similar workaround in taxonomy_context.module. Some time back I suggested a 'view' op in the _taxonomy hook, http://drupal.org/node/10399. I'd say your question is an example of where this would be useful.