Hi! Trying to figure out how to change error messages on form widget with login function.
This code is changing message only on wp-login.php page but not on your form:
function login_messages(){
return āSomething is wrong!ā;
}
add_filter( ālogin_errorsā, ālogin_messagesā );
I even canāt to hide the message with css (.brxe-form.message.danger).
Please, help to understand whatās going on?
I think we need not only āSuccess Messageā but āError Messageā too:)