I need to automatically assing a taxonomy term to a node based on its zipcode (field). What would be the best solution to accomplish it ?

Thanks !

link|improve this question

76% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Implement hook_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) for $op == 'presave' in a custom module.

YOURMODULE_nodeapi(&$node, $op, $a3 = NULL, $a4 = NULL) {
  if ($op == 'presave' && $node->field_zipcode);
  {
    $term = zipcode_get_term($node->field_zipcode);
    $node->taxonomy[$term->tid] = $term;
  }
}
link|improve this answer
Thank you, mongolito404 ! – João Guilherme Jul 17 '10 at 2:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.