Viewing 2 replies - 1 through 2 (of 2 total)
  • 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

    @ricardolabs this seems to have fixed the login label, but not the error message. Is there a way to fix it?

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Changing Default Dialogs’ is closed to new replies.