SOLERnet,
I just made a solution. I found it pretty silly that they would include that by default and not have a way to change it:
remove_filter( 'wpmem_inc_login_inputs', 'ntmeau_wpmem_login_username_to_email' );
add_filter( 'wpmem_inc_login_inputs', 'normal_email_field' );
function normal_email_field($inputs){
if ( $inputs[0]['tag'] == 'log' ) {
$inputs[0]['name'] = __( 'Email', 'example' );
}
return $inputs;
}
The above removes the plugins filter and adds your own