abhashdc
Forum Replies Created
-
Hi @bdwordpress,
Yes, there is a way around this. It can be done using one of our pro features called “Conditional Logic”. You will be able to send email to a specific address depending on what option is chosen. First, you will have to add emails that you want to send emails by going to Settings> Email. Now enable conditional logic in the email and set If multiple choice is “Option A” then send the email. Conditional logic will be on the bottom of the email page. Doing this, the email will be sent to a specific department only if they select a specific option.
Do the same to all your new emails.Regards
Hi @drachsi,
I think there is some misunderstanding here. You cannot use the same key for multiple sites without adding your new site’s URL in google’s console. I suggest you go to google console and add your second site’s URL in it. By doing so you will be able to use the same site key on both of your sites. Here is the link to reCaptcha: https://www.google.com/recaptcha/intro/v3.html
Thanks!
Hi @napalmx37
The above line of code should enable any user role to enable dashboard access if they are prevented from accessing it. That way it should overwrite on any type of dashboard access that you have set and you should be able to log in. Please try to login by opening a private/incognito window. Can you test if you are able to login by registering as a new user from the form that you have created for those specific users roles? If not, please contact us at help@wpeverest.com as we may need to dig deeper into this issue.
Thanks!
Hi,
Glad to know that the issue is resolved. If you have a moment to spare then we would really appreciate your review for our plugin https://wordpress.org/support/plugin/user-registration/reviews/
Thanks!
Hi @jmccx
That is the display name that you are seeing. The above code will set your username as your email. User name and display name are two different things. You can change your display name but your username will stay as it is. That is extracted from the email.
Thanks
Hi @napalmx37
Please add the following code to your functions.php file which will be inside your active theme’s folder:
add_filter( 'user_registration_prevent_admin_access', '__return_false' );Thanks!
By changing the endpoint in the setting this issue will be resolved. Please go to User Registration> Setting> General> Lost Password and update the text to forget-password.
Thanks!
Hey @cnj1
It seems you have disabled wp-login. Please go to wp-config.php and type in the code below:
define( 'UR_DISABLE_PREVENT_CORE_LOGIN', true );Save it and now you will be able to log in through WordPress login.
Thanks!
Hey all,
Yes, you can do it but you will need to add a code snippet to your functions.php file which is inside your theme’s folder. Here is the code:
add_action( 'user_registration_after_register_user_action', 'ur_insert_username', 1, 3 ); function ur_insert_username( $valid_form_data, $form_id, $user_id ) { global $wpdb; $user_login = $valid_form_data['user_email']->value; $wpdb->update( $wpdb->users, array( 'user_login' => $user_login ), array( 'ID' => $user_id ) ); } add_filter( 'user_registration_before_register_user_filter', 'ur_set_email_as_username', 10, 2 ); function ur_set_email_as_username( $valid_form_data, $form_id ) { $valid_form_data['user_login'] = $valid_form_data['user_email']; return $valid_form_data; }Now everyone who registers through our plugin will have their email set as their username.
Thanks!
- This reply was modified 6 years, 11 months ago by abhashdc.
- This reply was modified 6 years, 11 months ago by abhashdc.
- This reply was modified 6 years, 11 months ago by Jan Dembowski.
Hi @lindagester
We have a solution for that but we will have to edit your plugin file. Can you contact us through email? Email: help@wpeverest.com
Thanks!
Hi @oldrichselner,
Only those users who have registered through our form can access profile details. This error is occurring because the user isn’t connected to a registration form. You need to use profile connect add-on to connect the user.
Fixing this issue is on our roadmap.
Thanks!
Hi @lindagester
You need to log out first before you can register new users. If you want to be kept logged in the admin panel and register then you should open another browser in an incognito tab to register user.
To open incognito in Google Chrome you can press Ctrl+Shift+N.Thanks!