It was working until recently but has stopped. I get the following when I try to save and then view browser console:
Cookie “wpcom-thirdparty-cookie-check” does not have a proper “SameSite” attribute value. Soon, cookies without the “SameSite” attribute or with an invalid value will be treated as “Lax”. This means that the cookie will no longer be sent in third-party contexts. If your application depends on this cookie being available in such contexts, please add the “SameSite=None“ attribute to it. To know more about the “SameSite“ attribute, read https://developer.mozilla.org/docs/Web/HTTP/Headers/Set-Cookie/SameSite complete.html:16:13
Ignoring unsupported entryTypes: longtask. recaptcha__en.js:45:240
Could not find a way to expose utilities_item.js. Check your load order. utilities_item.js:1079:10
Loading failed for the <script> with source “https://stats.wp.com/w.js?61”. notifications:1:612
InstallTrigger is deprecated and will be removed in the future. rest-proxy:16:5530
Any help would be appreciated.
]]>I am using version 2.7.1- alpha and I am encountering the following problem. Users (members) can not save their field inputs while editing their profile. As an administrator, I am also not able to edit and save user’s field inputs either
I have ran a plugin conflict test and I have ensured the pages are linked correctly. This has not solved the issue.
New members are able to sign up, upload cover & profile photos, save them. But any field input is not being saved.
]]>I have this code to be able to change my email from the profile form
add_action("um_submit_form_profile","add_field", 1 );
function add_field( $post_form ){
//user mail
if( isset( $post_form['user_email'] ) && ! empty( $post_form['user_email'] ) ){
$user = wp_get_current_user();
if( email_exists( $post_form['user_email'] ) && $post_form['user_email'] !== $user->user_email ){
UM()->form()->add_error( 'user_email', __( 'Your email address is already taken', 'ultimate-member' ) );
}
}
}
And i also have added user_email error via this one (In the profile form ive set up the validate as custom)
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 Address is required', 'ultimate-member' ) );
} elseif ( ! is_email( $args['user_email'] ) ) {
UM()->form()->add_error( 'user_email', __( 'The email you entered is invalid', 'ultimate-member' ) );
} elseif ( email_exists( $args['user_email'] ) ) {
UM()->form()->add_error( 'user_email', __( 'The email you entered is already registered', 'ultimate-member' ) );
}
}
}
So, even if i dont change my email, i have “The email you entered is already registered”.
For my profile form i want email to be if empty, if it’s an invalid email, if the email is already taken by someone else.
I’ve tried to remove the valide custom check but then the only error i get is “The email you entered is incorrect”
Any way to custom the code in the profile form too ?
]]>The admin can change the status in the backend, and then it will be updated on the frontend for the member as well. This made us think that the fault is in the communication between the Form and the actual User Information, but we can’t seem to find where the problem lies. Everything is up to date, but we’re running our website on Php 7.4 as we can’t update to 8.1 (also trying to figure that out but thats another problem :)).
Any ideas?
]]>1. Several of the checkbox fields won’t allow them to select an answer,
2. After pressing submit, it deletes all of their information and forces them to start over.
I’ve disabled caching on my login, user, register, and account pages. And I have done a plugin conflict test with no success.
My site is suppose to go live next week!! Please help!
]]>Is something of this sort possible with Ultimate Member? I’d be very thankful for any suggestions.
]]>Apologize for my english, I hope you understand
]]>