i am not understanding this part at all
====================================
The following code adds an extra area to:
User Profile Fields -> User Profile Field Manager
When a new profile field is added, in the Display Page area, select Options: Extra Options (or whatever you placed in the extra_options vB Phrase)
// *** open admincp/profilefield.php
find
"$vbphrase[options]: $vbphrase[other]"
replace with
"$vbphrase[options]: $vbphrase[other]",
"$vbphrase[options]: $vbphrase[extra_options]"
find
5 => "$vbphrase[options]: $vbphrase[other]",
add under
6 => "$vbphrase[options]: $vbphrase[extra_options]",
// *** save and close admincp/profilefield.php
// *** open includes/functions_user.php
find
case 5:
$customfields['other'] .= $tempcustom;
break;
add under
case 6:
$customfields['extra'] .= $tempcustom;
break;
// *** save and close includes/functions_user.php
====================================
|