Hi,
I'm installing this but I don't know where admincp/profilefield.php or includes/functions_user.php is for this part:
Quote:
// *** 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
|