Hello,

Great module but it doesn't work in the following scenario:

Add term reference field in People/Account Settings with settings: Checkboxes/Radio buttons, Unlimited values and of course, Checkall activated. Check all links aren't there.

On the other hand, the above combination added to content type works like charm. Checkall links are in place and working.

Any clues?

Thanks!

Comments

plamenut created an issue. See original summary.

plamenut’s picture

Issue summary: View changes
shopoftheworld’s picture

Hi
I managed to make this work using a hook_form_alter on the form and it was quite easy

(I have a form alters custom module but you can put in Template.php as well I am sure)

The module still needs to be configured for the people select box field

Something like this

  if ($form_id == 'user_profile_form' || $form_id == 'user_register_form') {
    $form['field_YOUR_TERM_SELECT_FIELD']['und']['#checkall'] = TRUE;
  }

I hope that helps

plamenut’s picture

#3 worked like charm.
Thank you shopoftheworld!