Advertisement
Guest User

Untitled

a guest
Jun 19th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. /*profile_2_type is id for profile 2 module and it's not working for me*/
  2. $form['profile_2_type']['field_test_auto_cmplete']['#autocomplete_path'] = 'user/autocomplete';
  3.  
  4. /*Here is the code which is working for me for node fields */
  5. $form['title']['#autocomplete_path'] = 'user/autocomplete';
  6.  
  7. $form['profile_2_type']['field_test_auto_cmplete']['und'][0]['value']['#autocomplete_path'] = 'user/autocomplete';
  8.  
  9. function ajaxengine_form_cruiseline_reservation_node_form_alter(&$form, $form_state, $form_id) {
  10.  
  11. $form['#after_build'][] = 'ajaxengine_after_build';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement