By dindon on
is there any module to automatically assign term to a node?
let say my site have free tagging and term will be assigned when member create any content.
Regards,
is there any module to automatically assign term to a node?
let say my site have free tagging and term will be assigned when member create any content.
Regards,
Comments
I think you need to explain
I think you need to explain a bit more about what yyou are thinking.
You might be interested in the glossary module which might do some of what you require.
match the content to the
match the content to the term.
example, members post this :
and i have terms : module, require
so that post is assigned automattically to both terms.
Sounds like an application of hook_nodeapi
I think you want to use hook_nodeapi. When the $op == 'submit' you want to search for all of your terms, and for each term do a regular expression search for the term in the $node->body (although it might be slightly trickier, we might actually want to do the search for each element of the $node->content array).
Dave
ougghhh, that's beyond my
ougghhh, that's beyond my capability.
is there any quick and dirty way? i just need it to autoassign node when importing phpbb post.
thanks
I am looking for something similar but different...
I was hoping to find a solution that would allow me to have my image nodes automatically assigned to the taxonomy term that matches the submitting users name. That way they would be added to their personal gallery page without having to select the taxonomy term themselves when posting the image.
As it turns out it is a different requirement from what the original poster wanted but fits under his intial description.
http://www.disscamera.org.uk/index.php
auto assign terms to nodes
i need something similar to categorise rss content aggregated with leech.
i have created vocabs and terms, and i want to have those terms automatically assigned to node contents, so that the tagadelic cloud will be able to display those terms which are most popular.
technically, it is almost similar with the glossary module which highlights words within the node content, if the word exist as a term within the glossary vocabulary.
i am running drupal 5.2, leech module, tagadelic module, taxonomy module.
any suggestions ?
Raja Iskandar Shah
Consulting for Malaysian Business
www.panduan.org
Taxonomy defaults
How about the taxonomy defaults module?
http://drupal.org/project/taxonomy_defaults
thanks for the suggestion,
thanks for the suggestion, but it was not i had in mind.
for example i am aggregating rss feed articles from 'what car' and using the leech module i have automatically tagged all the articles from the feed as 'car'. what i need now is for an article with the word 'ford' to be automatically tagged as 'car' and 'ford'.
Raja Iskandar Shah
Consulting for Malaysian Business
www.norazilaco.biz
how about this ...
Node Auto Term [NAT] - The NAT module is a helper module used to maintain node-term relationships, i.e. when a node is created, an equivalent taxonomy term is automatically created in any associated vocabularies. This module is a simple but effective way to create node-node relationships via the taxonomy module.
with this done ... I was looking for a solution how to automatically filter content to the respective term - automatically, without creating an arguments or filter in "Views" for various pages. How can I do this GLOBALLY i.e in settings.php or page.tpl?
BTW, I am doing multisites, seperating content for respective term.
-najibx-