Filters
Filters available for Login Form Widget are listed below.
HELPS MODIFY THE ERROR MESSAGES STRING.
add_filter( 'uael_form_error_string', function( $strings ) {
//Modify the strings here.
return $strings;
}, 10, 1 );
HELPS MODIFY THE 『REMEMBER ME』 STRING.
add_filter( 'uael_login_remember_me', function( $string ) {
//Modify the string here.
return $string;
} );