Quote:
Originally Posted by Hugo Firth
When I am selecting the display page for another profile field, extra options doesnt show up - even though I have followed instructions to the letter up to now - I use vB 3.6.8 - any ideas ?  thanks
|
You followed this to the letter, correct? If so, this should have done it. If not, please PM me the code around these edits. I'd guess that when you edited functions_user.php, it wasn't saved, or uploaded perhaps?
Quote:
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
|