I've made a user profile plugin for Joomla 2.5 using this tutorial link
It works great, but I need the custom field that I added to be a radio button instead of text, because it's a "male/female' option.
Here is how it looks like in /plugins/user/profile10/profiles/profile.xml:
<field
name="gender"
type="text"
id="gender"
description="Male or Female?"
filter="string"
label="Male or Female?"
message="PLG_USER_PROFILE_FIELD_WEB_SITE_MESSAGE"
size="30"
/>
and plugins/user/profile10/profile10.xml:
<field name="register-require_gender" type="list"
description="Your gender"
label="Male or female?"
>
<option value="2">JOPTION_REQUIRED</option>
<option value="1">JOPTION_OPTIONAL</option>
<option value="0">JDISABLED</option>
</field>
I noticed the line type="text" but I'm not sure what I replace it for and where I place both options.
Does anyone know how to do it? Thanks in advance.