I am using the profile module and have several categories for different fields. I want to add a small bit of text to the top of one of the categories saying what the category is for. The information would be displayed when a new user registered. Basically I want to tell users to only fill out a category on certain conditions. Can anyone tell me how I could do this? I’m guessing I could use hook_form_alter(), but I don’t know where to start.
I am using the profile module and have several categories for different fields. I
Share
You want to create your own module and implement hook_form_alter like you mentioned.
In a nutshell:
You may have to update your module’s “weight” as I described here (replacing CCK with Profile).