Hello,
I'm trying to configure drupal for an NGO, with the following needs:
1 - When users click to register a new account, they immediately have to fill all the personal information on the "profile" page - not just "name" and "email". Some of the fields are required, and some are not. They then receive an email like usual with their new password, and can login. That way, all their account info is already entered.
2 - I already created Custom fields in the profile.module:
...
"reo" => array("checkbox", t("Research Expertise - Other"), "1", "", ""),
"external" => array("select", t("External Financial Support"), "", array(0 => "-", "ye" => t("Yes"), "fe" => t("No")), "", 0, 0),
...
Some are text blocks, some are yes/no radio buttons, and some are checkboxes. (And yes, I also already added the patch for checkbox handling). The checkboxes are static, but it would be great if they could be linked to [or rather, be created by]the taxonomy, ie "These are our blog categories, and this person specializes in a few of these categories". So that way, each time a blog category is added, an appropriate checkbox is also added in the user profile / registration - and I don't have to edit profile.module by hand.
Now I've downloaded and installed members.module, which works great, except that I can't figure out how to add fields to the "Columns to show" box; ie I want to display the persons' country on the members page.