Search Results for 'activation email'
-
Search Results
-
Assigning Roles at registration disables the ability to “activate” users from the “pending” users dashboard
-Essentially because I am assigning new roles at signup, it seems users are no longer assigned to “pending Role” and are correctly being placed into the selected role from sign up page…
This is all good EXCEPT I lost the ability to resend Activation email as well as LOST ability to ACTIVATE manually from the dashboard.
if they have issues, I have no options to help, I can only delete the user and tell them to register again 🙁
any and all help is greatly appreciated. thanks!!
Theme: I am using REHub for MultiVednor site.
Plugins: WooCommerce, WC vendors PRO, BPWC Vendors, BP4WCSpecific relevant plugins for this issue: BuddyPress, BuddyForms Pro, BuddyForms Members Pro, BuddyPress Member Types Pro
Topic: Activation is not visible
Hi Everyone.
Im busy developing a website. Its still a work in progress. I have the latest WP (version 4.9.6) and the new BP (Version 3.0.0). And Im using this theme > KLEO
When a new user register:
1. they receive the activation email
2. click and it redirects to the activate page sucessfully
3. But there is no activation key in the field. its blank
4. When I copy and paste the key from the URL, then the account is activated successfully.My problem is the user cant see the activation key on the activate page. That field is blank.
I did the following already:
1. De-activated all plugins except BP
2. Re-installed the theme
3. When I use the default WP theme, then I can see the activation key
4. Contacted the theme support, they say its a BP issue.PLEASE HELP!
Using Nouveau. Fresh install of BP.
Why is there no default email provided to allow new members to activate their account? The number of default emails from the install are 14, whereas on this page there are 16.
The default email (from the link above) under the Members section, “Activate” and “Activate your account” are not provided.
First, does this explain why new members cannot receive their activation emails?????
Can anyone give me the template for the activation email? I’m not a coder…just winging it.Can you help me understand where the problem is? When someone register’s, the activation email is not received.
• BP Nouveau
• Plugins: BuddyPress, Check Email, Floating Publish Button, Updraft, Wordfence Security
• The recipient will receive a test email via Check Email.
• Using Divi on non-BP pages such as contact, about, policies, etc.
• I had BP on this site a month ago, and this problem occurred then. I had the host provider do a fresh WP install a few days ago to make sure the code and root directories were clean. Still having issues. I tried this with several of my emails and the activation emails are not received.Hi Team,
When we register through budypress default registration through one of my client site
http://www.learn.awecademy.org.
Everytime i am getting email with header via server host name(info@mydomain.com via server_hostname).
What i have done till now.
In Change My Child theme.
1)add_filter( ‘bp_email_set_from’, ‘filter_bp_email_set_from’, 10, 4 );
2)Set WP SMTP For email.
3)add_filter( ‘wp_mail_from’, ‘wpb_sender_email’ ); –add my theme function.php
4)add_filter( ‘wp_mail_from_name’, ‘wpb_sender_name’ );–add my theme function.php
5)Also WordPress Include Plugable.php i have remove the from name and email and set admin_email
Please suggest what i have to do to resolve this problem.
Regards
Subhajit Sadhukhan
Elagoon Development.Hi,
I’m new to buddypress and I was trying to add the xprofile fields to admin email after activation.
I found this code and I’m desperately trying to figure out how to make it work.
/* Plugin Name: Custom New User Email Description: Changes the copy in the email sent out to new users */ // Redefine user notification function if ( !function_exists('wp_new_user_notification') ) { function wp_new_user_notification( $user_id, $plaintext_pass = '' ) { $user = get_userdata( $user_id ); // The blogname option is escaped with esc_html on the way into the database in sanitize_option // we want to reverse this for the plain text arena of emails. $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES); // find the profile field for referrer //$field1 = xprofile_get_field_data( 'Referrer', $user_id ); $field1 = xprofile_get_field_data( 'field_id=1', $user_id ); $field2 = xprofile_get_field_data( 'field_id=2', $user_id ); $field3 = xprofile_get_field_data( 'field_id=3', $user_id ); $field4 = xprofile_get_field_data( 'field_id=4', $user_id ); $field5 = xprofile_get_field_data( 'field_id=5', $user_id ); $field6 = xprofile_get_field_data( 'field_id=6', $user_id ); $field7 = xprofile_get_field_data( 'field_id=32', $user_id ); $field8 = xprofile_get_field_data( 'field_id=8', $user_id ); $field9 = xprofile_get_field_data( 'field_id=9', $user_id ); $field10 = xprofile_get_field_data( 'field_id=10', $user_id ); $field11 = xprofile_get_field_data( 'field_id=13', $user_id ); $field12 = xprofile_get_field_data( 'field_id=16', $user_id ); $field13 = xprofile_get_field_data( 'field_id=25', $user_id ); $message = sprintf(__('New user registration on your site %s:'), $blogname) . "\r\n\r\n"; $message .= sprintf(__('Username: %s'), $user->user_login) . "\r\n\r\n"; $message .= sprintf(__('E-mail: %s'), $user->user_email) . "\r\n\r\n"; $message .= sprintf(__('First Name: %s'), $field1) . "\r\n"; $message .= sprintf(__('Last Name: %s'), $field2) . "\r\n"; $message .= sprintf(__('Job Title: %s'), $field3) . "\r\n"; $message .= sprintf(__('Company: %s'), $field4) . "\r\n"; $message .= sprintf(__('Address 1 : %s'), $field5) . "\r\n"; $message .= sprintf(__('Address 2 : %s'), $field6) . "\r\n"; $message .= sprintf(__('Country : %s'), $field7) . "\r\n"; $message .= sprintf(__('City: %s'), $field8) . "\r\n"; $message .= sprintf(__('Zip: %s'), $field9) . "\r\n"; $message .= sprintf(__('Phone: %s'), $field10) . "\r\n"; $message .= sprintf(__('Fax: %s'), $field11) . "\r\n"; $message .= sprintf(__('Relationship: %s'), $field12) . "\r\n"; $message .= sprintf(__('Interest: %s'), $field13) . "\r\n"; @wp_mail(get_option('admin_email'), sprintf(__('[%s] New User Registration'), $blogname), $message); if ( empty($plaintext_pass) ) return; $message = sprintf(__('Username: %s'), $user->user_login) . "\r\n"; $message .= sprintf(__('Password: %s'), $plaintext_pass) . "\r\n"; $message .= wp_login_url() . "\r\n"; wp_mail($user->user_email, sprintf(__('[%s] Your username and password'), $blogname), $message); } }
Please help.
Thank you so much
Dennis
Hi,
I use the latest version 2.9.4 of BuddyPress and I’m stil having a lot of deliverability problems with emails for account activation. However, this should be fixed according to the changelog.
So a lot of new users don’t receive the account activation e-mail. It creates a lot of extra work for me and frustration for the users as I have to activate these accounts manually.
Regards
Hello,
I have tried for a month to redirect my buddypress users to my custom activation page upon activation. I do not want them to be sent to the homepage upon activation / first login.
Currently, a user signs up, the “Welcome” email is sent with the activation link, they click the link, are logged into their new account and end up on the homepage.
Is there a way to send them on first login upon activation to my page titled “Activate & Set Up” ??
I have set EVERY setting in wp-admin which asks for “activation page” to my custom “Activate & Set Up” page. I use OneSocial Theme by BuddyBoss which integrates Woocommerce + Buddypress.
I have tried the plugin BP Login Redirect and it only redirects to Profile page.Again, all wordpress, woocommerce, buddypress settings for activation page point to “Activate & Set Up”
Thank you!!
Hello,
It appears that myself and many many others have succumb to the issue where new registrants get the activation email, but it directs them to the red “invalid activation key” error.
The key does not show up in the database (phpmyadmin).
There needs to be a fix for this as there appears to be no solution at the moment. It appears to be a very common issue.
I personally need help as soon as possible please. I’ve scoured the forums and the web for answers, and currently have many frustrated people trying to join my site. (I was getting too many bots creating users so a “professional” told me to change the register page URL. It seems to have broken the link from the register page to the database. I changed the URL back, but it didn’t help. I’m now told in the buddypress support forum here that there’s no way to recover from this…???)
Any help, advice, updates (I’m running the latest version Version 2.9.4 on WordPress 4.9.5) would be amazing and beyond appreciated, please. I can’t redo my site as I have about 100 users and about 300 pages.
Thanks so much,
TTopic: Cannot activate user
Hi,
We were getting too many bot users, so we changed our Register page URL. This appeared to work well, however pending users no longer show up (in the backend), and when someone registers and receives the activation email, the link gives them an “Invalid activation key” error.
The user definitely exists in the system somewhere because we tried to re-input our test user, and it says the user and email exists…. but it doesn’t show up in “pending users.”
WordPress 4.9.5
BuddyPress Version 2.9.4