Login form
-
Hello,
Need help for the login form.
I need to put this message
“Unknown email address. Check again or try your username.” (WP message)
In div under the usename/email field.
These messages are shown: “Unknown username. Check again or try your email address.
“, “?????: ?????? ?????? ???? ?????? itamar ???? ?????. ????? ?????” (Also (WP message))
These code its for this sections:
if(data.invalid_username == true){
jQuery(“.your-username .login-not-valid-tip”).html(data.message).show();
showerror( username );
alert(“data.message”);
username.removeClass(‘input-success-icon’);
username.addClass(‘input-failure-icon’);
} else{
hideerror(username);
username.addClass(‘input-success-icon’);
username.removeClass(‘input-failure-icon’);
}
.
.
.
form.find(“.login_msg.fail”).html(data.message).show();Thanks
The page I need help with: [log in to see the link]
- The topic ‘Login form’ is closed to new replies.