Hi Marge,
- When password is added via
rwmb-user-info
meta box, it's always required. You can change it with the rwmb_profile_info_fields
filter.
add_filter( 'rwmb_profile_info_fields', function( $fields ) {
$fields['password']['required'] = false;
$fields['password2']['required'] = false;
return $fields;
} );
-
I don't see that problem on my localhost. Please see this video. Please check in the user profile to see if the user has set first name = username.
-
It's possible. You need to hook to get avatar function to change the avatar URL.
-
The image field actually doesn't show any file name. If you meant the "file" field, then yes, it shows only the file name.
-
You can hook to rwmb_profile_info_fields
to add email fields to add email field, like this:
add_filter( 'rwmb_profile_info_fields', function( $fields ) {
$fields['email'] = [
'name' => 'Email',
'id' => 'user_email',
'type' => 'email',
];
return $fields;
} );