Hello!
I have added two custom field in my registration main form: VATSIM ID and IVAO ID. However, when a new pilot registers in my VA and introduces his IVAO ID, this one is not registered in his profile. There’s no problem with VATSIM ID. If the pilot edits his information in the Pilot Area, he can set his IVAO ID and it’s shown in his profile.
I am using this code in the registration main form and edit profile form. The IVAO ID code does not work in the registration form only.
VATSIM ID code
<input name="VATSIM ID" class="form-control customfield_textarea" type="text" value="<?php echo PilotData::GetFieldValue($userinfo->pilotid, 'VATSIM ID'); ?>"></span>
IVAO ID code
<input name="IVAO ID" class="form-control customfield_textarea" type="text" value="<?php echo PilotData::GetFieldValue($userinfo->pilotid, 'IVAO ID'); ?>"></span>
Thanks!