Am trying to implement the autotagging feature for our site. But it seems that the autotagging feature works only with the default node body field. How do i configure it to use a custom CCK description field (or some other cck field) ?
| Comment | File | Size | Author |
|---|---|---|---|
| #2 | autotagging_hook.patch | 809 bytes | IncrediblyKenzi |
Comments
Comment #1
IncrediblyKenzi commentedRight now the autotagging module acts on a combination of the title and body field.
That being said, it's difficult to support arbitrary fields from a ui perspective.
What I can do is offer the ability to hook into the module right before the tag fetch so that other fields can be appended to the processed text. That should do the trick. Sound good?
Comment #2
IncrediblyKenzi commentedTry the following patch.. It's a one line change, but allows you to define a function in a custom module, ala:
If this works for you I'll commit it.
Comment #3
mesh commentedSounds goooood.. also if the cck field itself has a 'include in autotagging' feature would be better IMO. Thanks for your reply..
Comment #4
mesh commentedchose not to use the cck fields for now, but will definately test your patch and revert back soon..