sorry for my english…
i’m not developper and only tested…and this is ok for edit, but although the new modified and updated in the profile address only appears unchanged on the name of the user.
You have on idea ?
You have possiblity add form “URL” :
In ” clean-login.php” after line 231 “$userdata[‘user_email’] = $email;}”
add :
$url = isset( $_POST[‘url’] ) ? $_POST[‘url’] : ”;
$userdata[‘user_url’] = $url;
In “login-edit.php” after line 26 “<input type=”text” name=”email” value=”<?php echo $current_user->user_email; ?>”> </div>”
add :
<div class=”cleanlogin-field”>
<label><?php echo __( ‘url’, ‘cleanlogin’ ); ?></label>
<input type=”text” name=”url” value=”<?php echo $current_user->user_url; ?>”>
</div>