I have the field_tags set to be a select box (not auto-complete). Inside hook_form_alter, how can I change the default value of the field_tags select box? So far, I have:
function autotag_custom_form_alter(&$form, &$form_state, $form_id){
if($form_id == 'article_node_form'){
//change default value here
}
}
But I don't know how to access the field_tags element and then change the default value. Please help! Thanks.
$formusingdpm($form)and inspect the variable to see what is in it and figure out what you need to change. See guide and screenshots at ratatosk.net/drupal/tutorials/debugging-drupal.html – nmc Jul 23 '12 at 15:29dpm($form);line to where you have//change default value herein your code above to print the form and inspect the form elements. Perhaps you should also mention why you're doing this programatically instead of setting defaults in the field setting through the interface. – nmc Jul 23 '12 at 15:52