Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 451 through 475 (of 1,893 total)
  • Author
    Search Results
  • phound1
    Participant

    Hello. We just recently installed buddypress onto our site. I am having trouble with new user registrations. Confirmation emails are not being sent after a new user registers and we did not have this problem before installing buddypress.

    I am using wordpress 4.6.1, woocommerce 2.4.6, wc vendors pro 1.3.6 , ninja forms 3.0.5, BP WC vendors 1.0.8, Buddypress 2.6.2.

    We are creating an ecommerce marketplace allowing mulitple vendors to set up their own shops and sell their products.

    Tried the buddypress email repair tool just a couple hours ago, no luck. I can only activate new signups manually and of course I would like activation emails to go through so new users can activate themselves and login.

    Would appreciate any help or advice. Thank you so much for your time!

    #258825

    In reply to: Activate Page

    findlay70
    Participant

    HI –
    Yes, my test email gets the activation email. no issues there.
    When I click on the link it takes me back to the paige, but I get a “Page not found” error. I have not created an activation page and not sure how do do that..
    Thanks for your help..!

    #258817

    In reply to: Activate Page

    Venutius
    Moderator

    What is the error you are getting?

    The user should get an email with and activation link

    By the way, this activation email sometimes ends up in the Spam bin on the users email, one fix to this is to set the outgoing email address used for this email using a plugin such as https://wordpress.org/plugins/cb-change-mail-sender/

    #258814

    Topic: Activate Page

    in group forum Installing BuddyPress
    findlay70
    Participant

    HI –
    After the user registers and gets and email with a link, the link directs the user back to the page to “activate” the profile, but the p[age shows an error. I created a “activate” page, but don’t know what script to use that processes the activation.
    What am I doing wrong..?
    Thanks

    knowitallninja
    Participant

    Hi,

    I need my users to be able to change their email address in the settings tab of their profile, without receiving a confirmation email first.

    The reason being is I manually register new users to my site, and I have to assign them a generic email that doesn’t work to begin with sometimes. I want them then to be able to login and set the email to whatever they want it to be?

    Is this possible? Preferably without a plugin? I’ve looked online and seen alot about stopping the account activation email but nothing about the change email confirmation.

    Thanks

    #258677
    trecks
    Participant

    Greetings,

    After a user submits the registration form on the Buddypress site I’m building, the form disappears and the page content refreshes (url remains the same) to a page with the heading “Check Your Email To Activate Your Account!” that says: “You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.”

    However, I want new registrants to be manually approved by an admin. Thus, I’ve edited the email new registrants receive and removed the activation link from it, plus I installed a plugin that sets the status of new accounts to pending and requires an admin to approve their account before the registrant can log in. The only thing left I need to do is edit the text of the completed registration page (as described above) to notify users that their account is awaiting approval instead of stating that they’ve received an activation email. How should I go about this?

    Thanks,
    trecks

    #258590
    loneseeker777
    Participant

    WP Version: 2.6.1
    BP Version: 2.6.2

    My site is hosted by an external server, owned by WealthyAffiliates. All plugins, versions, etc., are stored on their databases.

    Issue persists with the bundled themes, too.

    Issue: After account creation and activation, the site rejects all attempts to allow login. I don’t know why this is happening. I talked to my provider, and they claim that their CDN doesn’t block users that go through the wp-login.php, so that’s not an issue.

    Steps:

    The new user clicks “register” on my sidebar, and is taken to a registration page. The page sends them through without issue, and sends the verification email.

    After the email is received, the account is verified and it says they’re free to login.

    Once they return to the homepage and try to sign in, however, it rejects access at the /wp-login.php page, citing an Error 401. Does anyone know a way around this?

    What I’ve tried:

    Disabling everything but BP

    Reinstalling BP

    Swapping to Twenty Fourteen

    Disabling WP synchronization with BP

    #258472

    In reply to: Confirmation Email

    roller24
    Participant

    David Im trying to alleviate the activation process, I tried your snippet in /wp-content/plugins/bp-custom.php

    I added a closing php tag because I didn’t see one, but something didn’t happen correctly.
    the registration page returns to registration page and no user is activated.

    Are we missing something? Do I need to put the code elsewhere?

    I also noticed in one file, I think it was signup that at the end of the file after submitting registration there was an if statement that asks if user activation required… send activation email..
    else
    echo your good go ahead and login..

    I was searching for the setting which makes activation required, but could not find it.
    There is a strange row in the bp data tables called “registration” with only a 0 as the data.
    Could this be changed to 1, I didn’t test it, but if you know.

    #258410
    steigw
    Participant

    It’s a staging site that doesn’t have public access, but I can put the code and info in here. Here is the complete code of the functions.php in the child theme. maybe I just put it all together wrong.

    <?php
    function nisarg_enqueue_styles() {
    
        $parent_style = 'nisarg-style';
    
        wp_enqueue_style( 'bootstrap', get_template_directory_uri().'/css/bootstrap.css' );
        wp_enqueue_style( 'font-awesome', get_template_directory_uri().'/font-awesome/css/font-awesome.min.css' );   
        wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
    
        wp_enqueue_style( 'nisarg-child-style',
            get_stylesheet_directory_uri() . '/style.css',
            array( $parent_style )
        );
    }
    add_action( 'wp_enqueue_scripts', 'nisarg_enqueue_styles' );
    ?>
    <?php
    function custom_wp_mail_from( $email ) {
            $handle = ‘accounts’;
    	$find = 'http://'; 
    	$replace = '';
    	$link = get_bloginfo( 'url' );
    	$domain = str_replace( $find, $replace, $link );
    	return $handle . '@' . $domain ;
    }
    add_filter( 'wp_mail_from', 'custom_wp_mail_from' );
    ?>

    The email link is:http://mydomain.com/activate/JA0BvkK1Q0DND10SYegdOtkTMemhGUF0/

    When I click on it immediately, I get all this:

    Fatal error: Uncaught exception ‘phpmailerException’ with message ‘Invalid address: ‘accounts’@mydomain.com’ in /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/class-phpmailer.php:946 Stack trace: #0 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/pluggable.php(352): PHPMailer->setFrom(‘\xE2\x80\x98accounts\xE2\x80\x99@…’, ‘WordPress’) #1 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/pluggable.php(1726): wp_mail(‘webmaster@arlin…’, ‘[My Dev Sit…’, ‘New user regist…’) #2 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-content/plugins/buddypress/bp-members/bp-members-functions.php(2031): wp_new_user_notification(18) #3 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-content/plugins/buddypress/bp-members/bp-members-screens.php(364): bp_core_activate_signup(‘JA0BvkK1Q0DND10…’) #4 [internal function]: bp_core_screen_activation(”) #5 /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/plugin.php(524): cal in /homepages/25/d283441938/htdocs/clickandbuilds/staging/wp-includes/class-phpmailer.php on line 946

    If I wait a while, then I get the normal webpage and it says “invalid activation key”. I don’t understand the significance of an immediate click on the link in the email vs. waiting a few more seconds, but it definitely matters.

    #258392
    zpaulypaul
    Participant

    Hello everybody, I have been working on a website for the past 3 weeks.
    When I first installed buddy-press into it I was able to create a few accounts and the activation emails were being automatically sent.
    Now after upgrading the theme I’m using emails are not being sent automatically or manually.
    Any ideas?

    #258374
    israelle
    Participant

    hi
    I’ve set-up buddypress on my website
    it doesn’t send any confirmation code only sn email with that link
    “Thanks for registering!

    To complete the activation of your account, go to the following link:

    http://email.mail1.hol.es/c/eJwtjssKwjAURL-mWYbcvLPIoogFd2r9gTS92mCkUlOVfr1ZCLOYA3NgRh-s0g5J8pyBZo4pBuDAUABphKbagNaU8U4qY0Uj2SOkDHSaM8UXmbwIXEVuEdGNaIcrglCDVlbEKAWTI8l-KuXZiLbhXc2GOWzr368cYknvULDWdn87p91wPJpOrl_eS3OQ9_4ytOvk1kWc6oQsPr2WjMbUJ5-Qc6BxpimT4n_Nkjq6

    when the user click on this link he gets an error_404 page
    how can I solve this problem and get the confirmation code

    thanks
    Israel

    #258320
    steigw
    Participant

    I’m running WP 4.6 and BP 2.6.2 the nisarg child theme. I noticed that new account activation emails arrived as wordpress@mydomain.com. I wanted to change that and read all you have to do is insert code into the functions.php file in the child theme.

    <?php
    function custom_wp_mail_from( $email ) {
            $handle = ‘accounts’;
    	$find = 'http://'; 
    	$replace = '';
    	$link = get_bloginfo( 'url' );
    	$domain = str_replace( $find, $replace, $link );
    	return $handle . '@' . $domain ;
    }
    add_filter( 'wp_mail_from', 'custom_wp_mail_from' );
    ?>

    I did this and sure enough, the emails came from accounts@mydomain.com and that was great, until the link to activate was actually clicked. Then it took me to a website of just raw letters/numbers. So clearly something went wrong.

    Could someone help me with what I should do? Thanks!

    #257672

    In reply to: Redirect does not work

    Paul Wong-Gibbs
    Keymaster

    @fail2reap So… after the user sends the registration form, rather than go to the page that says something like “check your email for an activation link”, you want to redirect them somewhere else?

    rebelangelo
    Participant

    Hi,

    I am getting notifications email like new friendship, comments, etc.. but can’t get new registration activation email.

    I’ve install facebook-login plugin and seems like it blocked buddypress registration mail I think. However, when I deleted this plugin I still couldn’t get activation email.

    I tried to repair buddypress from Tools->Buddypress and still have this problem

    Also I am using WP-Mail-SMTP for this email actions.

    My budyypress version is 2.6.1.1

    Thanks

    veresku
    Participant

    Hello,

    After updating my site does not send email with activation link. I debug the new code and the function bp_get_email returns this error:
    WP_Error Object
    (
    [errors] => Array
    (
    [missing_email] => Array
    (
    [0] => bp_get_email
    )

    )

    [error_data] => Array
    (
    [missing_email] => Array
    (
    [0] => core-user-registration
    [1] => Array
    (
    [no_found_rows] => 1
    [numberposts] => 1
    [post_status] => publish
    [post_type] => bp-email
    [suppress_filters] =>
    [tax_query] => Array
    (
    [0] => Array
    (
    [field] => slug
    [taxonomy] => bp-email-type
    [terms] => core-user-registration
    )

    )

    )

    )

    )

    )

    In admin panel I can see only buddypress email but I cannot see any terms for it

    Please help me to resolve this problem

    Thank you, Tiana

    #257114

    Topic: Activation email

    in group forum Installing BuddyPress
    jtburlew
    Participant

    When a new user registers with BuddyPress, they’re not receiving an activate email. I have to manually activate them from my dashboard. With over 3,000 people to get registered, this is not convenient.

    Help?

    http://www.safecare.info

    #256963
    itnetworkexpert
    Participant

    Hello @danbp
    I have installed wp-email-smtp plugin and configured it successfully with no errors and was able to send test messages, but activation emails still would not send.

    Has this issue actually been resolved?

    Buddy press Version 2.6.1.1

    Regards,

    Fayaz

    #256945
    itnetworkexpert
    Participant

    same problem with the plugin wp mai smtp Buddypress not sending activation emails

    itnetworkexpert
    Participant

    I have installed wp-email-smtp plugin and configured it successfully with no errors and was able to send test messages, but activation emails still would not send.

    Has this issue actually been resolved?

    Buddy press Version 2.6.1.1

    Regards,

    Fayaz

    #256143
    vicksterm
    Participant

    After I click the Register button on the registration page, the text about “Check Your Email to Activate Your Account” does not display. It is hidden with an element style “display:none;”. I can’t figure out why that is there or how to remove/change it. The activation email is sent so the registration is working. It’s just that the text is hidden. I did change the slug for the register page via WP admin, but according to the codex that’s the way to do it. Any ideas for how to get the text back? Here’s the source code, along with some around it:

    <div id="main" class="clearfix " style="">
    	<div class="fusion-row" style="">
    		<div id="content" class="" style="float: left;">
    			<div id="post-0" class="bp_register type-bp_register post-0 page type-page status-publish hentry">
    				<span class="entry-title" style="display: none;">Check Your Email To Activate Your Account!</span>
    				<span class="vcard" style="display: none;">
    				<span class="fn"></span>
    					</span>
    				<span class="updated" style="display:none;">2016-06-21T19:03:57+00:00</span>
    				<h3 class="entry-title">Check Your Email To Activate Your Account!</h3>
    		<div class="post-content">				
    		<div id="buddypress">
    		<div class="page" id="register-page">
    #256073
    Dono12
    Participant

    Is there a way to add a filter to the function bp_core_activation_signup_user_notification located in bp-core-filters.php?
    I would like to change out the verification key it generates to the default WordPress key because the Buddypress key is in conflict
    with the cimy user extra field plugin. I would like a function for bp-customs or functions.php to replace the key giving me the ability
    to keep the new Buddypress user email features.

    #256071
    danbp
    Participant

    What is your BP version ? Have you tried to use the email repair tool ?

    New user activation emails not coming

    #256068
    #256057
    pulidomate
    Participant

    Finally i have done this:

    function send_mail_to_teacher($user_id, $user_login, $user_password, $user_email, $usermeta){
    
      $key = get_user_meta( $user_id, 'activation_key', TRUE );
      $first_name = bp_get_profile_field_data('field=Name&user_id='.$user_id);
      $surname = bp_get_profile_field_data('field=Surname&user_id='.$user_id);
    
      $args = array(
        'tokens' => array(
          'key'          => $key,
          'user.email'   => $user_email,
          'user.id'      => $user_id,
          'first_name'   => $first_name,
          'surname'      => $surname,
        ),
      );  
    
      $teacher_email = bp_get_profile_field_data('field=Teacher&user_id='.$user_id);
    
      bp_send_email( 'sendtoteacher', $teacher_email, $args );
    
    }
    
    add_action('bp_core_signup_user', 'send_mail_to_teacher', 10, 5);
    #255978
    pulidomate
    Participant

    Yes, but this code doesn’t work

    function activation_email( $user_id, $user_email, $key, $user_login = '' ) {
    
      $args = array(
        'tokens' => array(
          'key'          => $key,
          'user.email'   => $user_email,
          'user.id'      => $user_id,
        ),
      );
    
      if ( $user_id ) {
        $to = $user_id;
      } else {
        $to = array( array( $user_email => $user_login ) );
      }
    
        $teacher = bp_get_profile_field_data('field=Teacher&user_id='.$user_id);
    
        bp_send_email( 'core-user-registration', $teacher , $args );
    
    }
    add_action('bp_core_signup_send_validation_email','activation_email',99,4);
Viewing 25 results - 451 through 475 (of 1,893 total)
Skip to toolbar