nevermind fixed it.
I added the following above line: 707 in profile.php
instead above line: 2418 in the original instruction.
Code:
// ############## boiboi #####################
// ## Start Extra Profile Page - by Faranth ##
//############################################
// This is if a user requests ?do=extra it will do start the actions
if ($_REQUEST['do'] == 'extra')
{
// makes the user cp nav look correct
construct_usercp_nav('extra');
// Gets our Extra Page Fields
$customfields = array();
fetch_profilefields(1);
// sets the area discription, feel free to change
$navbits[''] = "Extra Info Page";
// sets template name to be called when the action is preformed
$templatename = 'page';
// sets shell template
$shelltemplatename = 'USERCP_SHELL';
}
// this is so that when a user saves their info it does get saved
if ($_POST['do'] == 'updateextra')
{
$userfields = verify_profilefields(6);
if (!empty($userfields))
{
$DB_site->query("UPDATE " . TABLE_PREFIX . "userfield SET userid=$bbuserinfo[userid]$userfields WHERE userid=$bbuserinfo[userid]");
}
eval(print_standard_redirect('redirect_updatethanks'));
}
// #########################################
// ## End Extra Profile Page - by Faranth ##
// #########################################
noticed i changed
Code:
$userfields = verify_profilefields(1);
to:
Code:
$userfields = verify_profilefields(6);
as AlexanderT suggested here:
https://vborg.vbsupport.ru/showpost....9&postcount=26
Don't forget that, otherwise your users won't be able to update.