buroindigo
Forum Replies Created
Viewing 4 replies - 1 through 4 (of 4 total)
-
Goodmorning Andrew,
I am using Astra theme (in combination with Elementor pro).
Goodmorning @andrewshu,
1: it happens when the field is already filled in. When try to select the text with the cursor you can see it’s still there. Just got feedback it happens on an iPhone as well, most likely also safari browser.
2: no worries, we have found a work around ??Hi Andrew,
Many thanks for getting back to me.
1. unfortunately it did not work. The problem only appears in safari, so not sure what this can be.
2. How can I check this? Sorry, not that technical.. What will be the input for the login page?Dear Andrew,
Many thanks for your quick reply! Hope I can bother you again and you can help with 2 other issues as well: - When users fill in the registration and login form the text turns white on Safari browser. How can I fix this? - I have found a way to change the texts of the error messages for the registration form using code below, which I found in another thread. I also need to change the text of the login page (I only use an email, no password) Is this possible by using the same method? And which handlers should I use? /** * Custom validation and error message for the E-mail Address field. */ add_action( 'um_custom_field_validation_user_email_details', 'um_custom_validate_user_email_details', 999, 3 ); function um_custom_validate_user_email_details( $key, $array, $args ) { if ( $key == 'user_email' && isset( $args['user_email'] ) ) { if ( isset( UM()->form()->errors['user_email'] ) ) { unset( UM()->form()->errors['user_email'] ); } if ( empty( $args['user_email'] ) ) { UM()->form()->add_error( 'user_email', __( 'E-mail adres is verplicht', 'ultimate-member' ) ); } elseif ( ! is_email( $args['user_email'] ) ) { UM()->form()->add_error( 'user_email', __( 'Het ingevoerde emailadres is geen geldig emailadres.', 'ultimate-member' ) ); } elseif ( email_exists( $args['user_email'] ) ) { UM()->form()->add_error( 'user_email', __( 'Het ingevoerde emailadres is al eerder gebruikt. Je kunt hierboven inloggen.', 'ultimate-member' ) ); } } }
Viewing 4 replies - 1 through 4 (of 4 total)