Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 301 through 325 (of 1,427 total)
  • Author
    Search Results
  • #273340
    ZaheedManuel
    Participant

    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!

    Venutius
    Moderator

    I’m thinking that BP actually does not provide the activation email, it’s a WordPress email, which would explain why it’s not counted in the BP email set. A handy tip when troubleshooting it is to deactivate BP and see if it’s getting sent, then you can isolate BP from the issue.

    glenndavis007
    Participant

    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.

    Email Tokens

    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.

    #273264
    bluviaggiatore
    Participant

    thank you very much for your help ,

    ın my situation , one box appears and ask key . I have found a solution by changing email content like below ;

    Thanks for registering!

    To complete the activation of your account, go to the following link: {{{activate.url}}} and insert your activation key: {{key}} in the field.

    with this way , users receive key as seperately and they put it in to the box .

    #273242
    glenndavis007
    Participant

    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.

    ajaxthemestudios
    Participant

    Hi

    This is how it happened. We got an email from registered members that they are being spam. Another member was sending them SPAM messages.
    The mail sent to them contained the name of the member so we searched for it. We also got the spammer’s account username and link by checking the affected members messages directly under their profile page on the frontend. The spammer has a profile page already. However, the username could not be found in the users section of the backend.
    Then we checked users that have not activated their account or received the activation email through a plugin named Unconfirmed.
    That was when we found the spammer info meaning the spammer has not activated his/her account yet but is already interacting with the community.
    That I cannot explain why it happened. It seems even though the user has not activated his/her account, he/she is already recognized by buddypress.

    Regards

    Varun Dubey
    Participant

    @ajaxthemestudios

    User will not able to log in and if they will try to log in, they will get the following message.

    ERROR: Your account has not been activated. Check your email for the activation link.

    For spammers:

    ERROR: Your account has been marked as a spammer.

    elagoon
    Participant

    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.

    dennis.cabasal
    Participant

    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

    #272590
    NFXpert
    Participant

    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

    #272442
    liutauras2
    Participant

    Could you share the code for resend the activation email? 🙂 @threwthenevr

    Varun Dubey
    Participant

    @axcelluloid You can filter inside BuddyPress Strings, it’s not inside BuddyPress codes
    You can also search via Find in folder approach for BuddyPress plugin
    https://translate.wordpress.org/projects/wp-plugins/buddypress/stable/en-gb/default

    By Default, BuddyPress only need account activation via email to start using the site.
    “Please upload your profile photo to start using this site.” must be coming from your theme or any 3rd party code.

    #272155
    soitopaula
    Participant

    Oh ok. No, I meant the very first page they land on from the welcome email link.

    Buddypress must have coded the activation page to be the home page then. Because there seems to be no getting to the actual “activation” page like you said.

    I will investigate more. I hope it can be done without too much headache! Thank you.

    soitopaula
    Participant

    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!!

    #272039
    Paul Wong-Gibbs
    Keymaster

    In version 2.9.4, we fixed deliverability problems for account activation and email address change emails for Outlook.com users.

    Your cloned site – is that on the same server as the main site? If it isn’t (even if they are on different accounts provided by the same hosting company), you could ask them to check that the server-side email sending configuration for the operating system, and PHP, are identical, just to cross that off the list of possibilities.

    #271959
    T
    Participant

    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,
    T

    #271958
    T
    Participant

    Hi @bntbrl,

    Did you get get this resolved? I’m stuck in a similar situation. Users get the activation email, but it directs them to “invalid activation key”… they cannot log in.

    The key is not in my database either.

    So stuck, and no way to contact @buddypress

    🙁

    #271932

    In reply to: Cannot activate user

    T
    Participant

    I went to the register page, and had added some letters to the permalink. I also assume that’s what caused new users to receive a faulty activation link, and not show up under pending users… but I’m not sure how to fix it…?

    I have my email address under general settings.

    Thanks though 🙂

    T

    #271931

    In reply to: Cannot activate user

    Venutius
    Moderator

    How did you change the link to the registration page? Presumably this is what caused that issue. I’ve not had to do that myself so am unaware of what issues it may cause.

    Regarding some users not getting activation emails. Are you using the default wordpress email address (wordpress@yoursite.com) some mail providers block these default emails and you can change the default email to something mre specific to your site using a plugin such as CB Change Mail Sender.

    #271930

    In reply to: Cannot activate user

    T
    Participant

    [of note, there have been some issues (since we launched at the beginning of March) where a few users weren’t getting the activation emails at all. Not in their junk mail or their inbox]

    #271919
    T
    Participant

    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

    Home

    siewyong
    Participant

    Dear Paul,

    thanks muchly for looking into this. i tried to sign up an account and expected to see activation email coming through, but none arrives…

    I then disabled the Extended Profile and registered a new account , still no email…
    I then disabled the Account Settings and registered a new account , ok , the activation email has finally come through .

    May I please ask why is it so? thanks .

    netixel
    Participant

    Hi,

    I do not know if this problem has been solved but here is the problem I have been experiencing for months.

    All the people who register on my website with an email address “hotmail” do not receive the confirmation email for registration. Why ? I contacted my webhost and they assured me that he had not blocked the email domain “hotmail” … So the problem comes from WPLMS. At first, it worked fine when I installed your theme and doing updates the problem occurred. The issue started around august 2017.

    Thanks for your help

    #271087
    sahalkaabi
    Participant

    WordPress Version : 4.9.4
    BuddyPress Version : 2.9.3

    i have installed WP Mail STMP plug in and configure it with Gmail and its working correctly (I receive the test email)

    The problem that whenever a user register they don’t receive the activation email , but at the same time i tried reset password and i received the email for reseting the password..

    – I have tried the repair tool but still not working

    can anyone help me please as i need to solve this issue as soon as possible

    #271046

    In reply to: email verification

    David Cavins
    Keymaster

    If you are asking about bbPress, try the bbPress forum.

    If you’re asking about removing the BuddyPress email verification step for new accounts, there are several plugins that do that:

    BP Disable Activation Reloaded

    BuddyPress Auto Activate Auto Login

Viewing 25 results - 301 through 325 (of 1,427 total)
Skip to toolbar