Add first name and last name field upon registration
-
Thank you very much for this lightweight plugin. Just what I need.
I need to add the first name and last name upon registration. I am able to display it but I am not sure what to do on the registration form and upon saving it. Please help.
`$num = 1;foreach ($users as $user) {
$user_info = get_userdata($user->user_id);
if ($user_info->first_name == ”)
$seatt_output .= ‘
<li>’ . esc_html($user_info->user_login) . ‘</li>
‘;
else
$seatt_output .= ‘
<li>’ . esc_html($user_info->first_name) . ‘ ‘ . esc_html($user_info->last_name) . ‘</li>
‘;
$num++;}`
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Add first name and last name field upon registration’ is closed to new replies.