views:

265

answers:

3

I'd like to add a date field to a drupal taxonomy term, alongside the default "title" and "description"

Is there some technique/php/module that lets me do this? Is it possible to do with CCK??

I need to be able to display the new field in the same view presenting the content nodes referencing the term.

At the moment, I've added a date field to the content nodes with CCK, and it's displayed by the view. But that's not exactly what I'm going for, I just want to update one date per term.

+2  A: 

Attaching fields to terms is added in Drupal 7, but that's still beta. I'd suggest replacing your taxonomy with a node reference field in Drupal 6.

Scott Reynen
Small correction: Drupal 7 is currently in alpha.
marcvangend
A: 

As Scott said, Drupal 7 has this as part of core. There are some modules that attach nodes to taxonomy (e.g. Taxonomy Node) that might also be helpful to look at.

bmann
I'll try out Taxonomy Node, that sounds like the easiest way to get what I need in the short term. This is a "needs to be done yesterday" kind of thing. I'll look into replacing my terms with node references later.
David Meister
+1  A: 

There's a module to do exactly this: http://drupal.org/project/term_fields

Guy