Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'activation email'

Viewing 25 results - 526 through 550 (of 1,893 total)
  • Author
    Search Results
  • #250529
    Paul Wong-Gibbs
    Keymaster

    Hi @ingeB1983

    I’m sorry you’re having problems. Thank you for letting us know.

    * How were you customising your activation emails?
    * Is your site sending other emails correctly, or are all emails broken? Can you test to be sure?
    * Are you running WordPress multisite, or regular WordPress?
    * Do you run any plugins that change wp_mail or affect how emails are delivered? For example, any plugins that send email via Mailchimp, etc?

    #250524
    IngeB1983
    Participant

    Hi there,

    I have been customizing my activation emails and yesterday they worked fine.
    Today I updated to Buddypress 2.5.0 (I running WP 4.4.2 for a few weeks now) and the activation emails are not sent anymore.

    Please help.

    Kind regards,
    Inge

    snazzypack
    Participant

    Once a user activated their account in their email, they are redirected to a page on the site that gives a little text and a log in link. I need to change the log in link or the text all together. How do I do this?

    #250128
    ITAScorpion
    Participant

    Hi,

    I have a problem when it comes to registration confirmation email, the link is not clickable.

    lnik

    Andrew Tibbetts
    Participant

    I have a handful of member types that I would like to manually confirm by an admin.
    Users choose their member type upon registration so, regular members can register, confirm email and start using the site, but special member types I want to be able to register, confirm email and then get put into some kind of user confirmation status.
    Couple things:
    – maybe this can be done by hooking into bp_core_activate_account in bp_core_screen_activation()?
    – what are the meanings of the ints for user_status in the wp_users table? Seems like WordPress doesn’t use it and Buddypress uses it but only 0 and 2. Maybe use 1 as a custom pending status?

    Arize Nnonyelu
    Participant

    Hello there! I have been running around in Circles all day looking for a way to allow users activate their accounts on the go without me having to approve it first. Just point me to where i can make the change. I have tried this plugin BuddyPress Registration Options but it didn’t solve the problem. Please just help me with it.

    #249408
    Alonsotron
    Participant

    I’m having issues with users being unable to “activate” their account following a signup. They are sent an activation link via email without issue. However, upon clicking the activation link, they’re redirected to the homepage and the user remains in the “pending” category.

    Does anyone know what may be causing this? Will provide more information if required.

    Thank you!

    #249319
    discdemo
    Participant

    Is it possible to suppress the activation email from sending and is it possibel to edit the “Check Your Email To Activate Your Account” message, upon successful registration?

    I’m looking to manually activate accounts once they are confirmed via another database. There is no integration, so it will be manual. Investigating, at least!

    Thanks.

    #249254
    rileydong
    Participant

    The registration process on my website is not working.
    wordpress 4.4.1
    buddypress 1.3.3
    http://www.pandadar.com

    After I have filled the form and submit the application, it redirect to Home page without showing a sucessful and check email message. At the back end, there is no record (the user name not showing up in ‘pending’ or ‘Manage Signup’) of this application. The user did not get activation email either.

    This is what I have done.
    1. I disabled all the plugin including bp and use a 2015 theme.
    Wordpress registration and activation works well.
    2. I activate bbpress plugin, and it still worked.
    3. I activate buddypress. Registration is in Register Page, and I can not register any more (and there is no error message in SCRIPT_DEBUG). I am redirected to Home after Submit.
    4. I edit Setting>General, change it to ip address, remove www or add www back, it does stop to redirect to Home without www. But login wise, it is no help.

    5. I set the permalink to post name and nothing changes.
    6. I disabled all the redirect in the settings I can find in the dashboard, nothing changes.

    I notice the action field of signup_form is empty. but it comes with the theme. I do not think it is relavant.

    Does anyone what problem it is? And if i have to look into the code, where should I start?

    Many Thanks!

    #249215
    discdemo
    Participant

    hi. is it possible to let users login with email after activation instead of username? i have a change username plugin which might be causing tjis but might not be. thx!

    #248971

    In reply to: new user emails

    Slava Abakumov
    Moderator

    You can try this plugin: https://wordpress.org/plugins/bp-disable-activation-reloaded/
    But you should not do this – anyone will be able to register with fake emails.

    #248967
    msgliniewicz
    Participant

    Ok, new to BP..

    Running
    WP: 4.4.1
    BP: 2.4.3
    site: http://www.bluestarguide.com
    Using WOOP Theme by GeoDirectory

    Users are signing up ok and getting an activation email. However, when they click the link to activate, users are getting “Invalid Activation Key” error.

    I have enough captcha and honeypots, is there a way to shut this off and let users be auto approved on sign-up?

    Oh, This error is new and no other users have reported an issue.

    Thoughts?

    Xtremefaith
    Participant

    I have a custom registration form that tweaked the registration.php template to include a couple additional inputs. The form works as expected, being processed through the buddypress channels

    bp_core_screen_signup()

    Then I hook into the bp_core_signup_user like so:

    # Capture registration form's metadata fields
    add_action('bp_core_signup_user', array( $this, 'add_registration_metadata' ),10 ,1);

    Through my custom add_registration_metadata() method I store the $_POST meta to the user_id like so:

    public function add_registration_metadata($user_id){
    	$type = isset($_POST['team_type']) ? $_POST['team_type'] : FALSE;
    	if ($type){
    		# Make sure that the post value matches the available options
    		if (($type == "type1") || ($type == "type2"))
    			# Save the value as user meta
    			add_user_meta( $user_id, 'team_type', $type);
    	}
    	/* Save username to metadata */
    	$username = isset($_POST['signup_username']) ? $_POST['signup_username'] : FALSE;
    	/* Save first name to metadata */
    	$fname = isset($_POST['signup_fname']) ? $_POST['signup_fname'] : FALSE;
    	/* Save last name to metadata */
    	$lname = isset($_POST['signup_lname']) ? $_POST['signup_lname'] : FALSE;
    
    	/* Update WordPress Details */
    	$userdata = array (
    		'ID' => $user_id,
    		'first_name' => $fname,
    		'last_name' => $lname,
    		'nickname' => $username,
    		'user_nicename' => DIV_Helper::slugify($username)
    	);
    	wp_update_user( $userdata );
    }

    As expected all the values are set in the usermeta table. I would think this is all that is left to do but its not and there is some confusion as to what is happening next.

    So now the user attempts to activate their account through their email obviously passing the activation key. This works! BUT my metadata values are gone. For some reason BuddyPress wipes the values stored in the usermeta table. So then I try to hook into the bp_core_activate_signup like so:

    add_action('bp_core_activated_user', array( $this, 'setup_registration_metadata') );

    This custom method attempts to re-update the user information but for some reason no combination seems to work, here’s what I have at the moment:

    public function setup_registration_metadata($user){
    	if (! empty( $user ) ) {
    		if ( is_array( $user ) ) {
    			$user_id = $user['user_id'];
    		} else {
    			$user_id = $user;
    		}
    	
    		if ( ! empty( $user_id ) ) {
    			$usermeta = get_user_meta($user_id);	
                                
                                // This doesn't seem to work as expected	
    			$type = $usermeta['team_type'];
                                // But this does...
                                $type = get_user_meta($user_id, 'team_type' TRUE);
    
    			# Make sure the value matches the available options
    			if (($type == "type1") || ($type == "type2"))
    				# Set the member type
    				bp_set_member_type($user_id, $type);
    
    			# Setup username
    			$username = $usermeta['username'][0];
    			# Setup first name
    			$fname = $usermeta['first_name'][0];
    			# Setup last name
    			$lname = $usermeta['last_name'][0];
    			
    			/* Update WordPress Details */
    			$userdata = array (
    				'ID' => $user_id,
    				'first_name' => $fname,
    				'last_name' => $lname,
    				'nickname' => $username,
    				'user_nicename' => DIV_Helper::slugify($username)
    			);
    			wp_update_user( $userdata );
    
                      ...
    }

    Any clues as to how I can update the first & last names (not using some xprofile field that redundantly stores the same information), as well as any other custom fields I may add in the future. It’s seems I’m on the right track, this just is working right now.

    Thank youl

    #248767
    rlfstars
    Participant

    Shane suggested i post here about my issue. Its te reason i went looking for other social sites.

    id like to get bp working. As Shane said, its possible i need more head room.

    the site is http://www.sneakpeekmusic.com

    i lost all groups, everything when it went offline.

    i have about 303,000 email users.

    #247400
    balmainboy
    Participant

    I’m using the 7.2 theme. I’ve tested it on Twenty Fifteen and it displays again in basic format. When logged in as a new member there is a join now button at least, but the styling is still very plain compared to the documentation screenshot – no avatars or colour – as per my previous screenshot of my site.

    The page is also called titled ‘Groups’ rather than ‘Groups directory’ – but i’m sure i could always change the name in WP settings.

    I’ve also got a problem with Activation emails but i’ll need to create a new thread for that.

    #247095
    Jld142
    Participant

    I have managed to customise the activation emails using the following filters:

    bp_core_signup_send_validation_email_subject
    bp_core_signup_send_validation_email_message

    Are there filters to customise the forgotten password emails ?

    Is there also a way to send emails everytime the user received a notification ? if so, are there any filters to customise ?

    #247077
    #247054
    Kelvin-mariano
    Participant

    Hello everybody, my problem is this, I wanted to let the user as valid after it signs up without send a confirmation e-mail with a URL to activate that account:

    have any function for this my current code is so but it still appears as “pending” on the panel?

    add_filter('bp_core_signup_send_validation_email_message', 'custom_bp_change_activation_email_message');
    function custom_bp_change_activation_email_message($message) {
    	//	Get some globals
    	global $bp, $wpdb;
    
    	//	Get the slug of the activation page
    	$slug = $bp->pages->{"activate"}->slug;
    
    	//	Get username from the signup form just posted
    	$username = $bp->signup->username;
    
    	$explode_email = explode('@', $bp->signup->email);
    
    	$user_info = get_user_by( 'email', $bp->signup->email );
    
    	if($explode_email[1] == 'dominio.com.br'){
    		$user_id = wp_update_user( array( 'ID' => $user_info->data->ID, 'role' => 'subscriber' ) );
    		delete_user_meta($user_info->data->ID, 'activation_key') ;
    		$wpdb->update( 'tb_users', array( 'user_status' => 0),array('ID' => $user_info->data->ID));
    		
    		bp_core_validate_user_signup( $username, $bp->signup->email );
    
    		$message = "Hello, your registration was successful you can now use the site normally";
    	}else{
    		$message = "Hello, register was received in our system and is waiting Site administrator approval.";
    	}
    
    #246935

    In reply to: How to fix Activations

    r-a-y
    Keymaster

    Follow what I mentioned above regarding the email plugins.

    Do some tests by registering some accounts yourself to see if you receive any activation emails.

    #246928

    In reply to: How to fix Activations

    asabetyyy
    Participant

    So, as far as I understand, you need to create two blank pages, one for register and one for activate, and after associating them, buddy press recreates the content. That’s done, users can register. now the problem is, they are not receiving activate emails, or emails at all after the registration, so i don’t know how to fix the activation issue I’m having.

    #246905
    asabetyyy
    Participant

    So I installed Buddypress through the use of theme BlackFyre for wordpress. The issue I’m having is that after installing Buddypress, I had to create a blank Registration and Activate pages for Buddypress to associate those pages and work.

    But now, when I test it, when a user creates an account, they do not receive an email with the information to log in, and they cannot activate their accounts. How do I fix this?

    #246222
    Alan1101
    Participant

    I successful to register an account, and get the “Check Your Email To Activate Your Account! 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.”

    My problem is when i check my email, i didn’t receive any email. I checked inbox and junk and spam also no email.

    How to fix it??? I know that activation email error is a common error on buddypress.

    #246205
    nasir623
    Participant

    Hi, I am currently using Buddypress 2.3.4, and my wordpress veirsion is 4.3.1 and its running with dazzling theme. I just setup my website with buddypress and trying to test registration function with my other emails. During testing, I’ve faced some weird situations. Mostly its about delaying the activation email. It happens frequently, mostly it happens to yahoo email. So, is there any solution for my situetion? I was setup registration page and activate page same as buddypress documentation.
    I don’t have any knowledge about php, I just have some basic HTML & CSS knowledge.
    So please tell me what to do? I just stuck with this isuue. I would be appreciate if someone could help me with this problem. Thank you very much.
    My website URL is http://www.livbeauty.biz.

    #246140
    paragbhagwat
    Participant

    To add more to this… i am writing the method as shown below

    add_filter( ‘bp_core_signup_send_validation_email_message’, ‘RECN_CUSTOM_activation_message’, 10, 3 );

    function RECN_CUSTOM_activation_message( $message, $user_id, $activate_url ) {

    $user = get_userdata( $user_id );
    ….
    ….

    and the $user_id passed is the signup id ….while the WP_USER table does not have data for the signup id…

    paragbhagwat
    Participant

    Hello All,

    I added a few profile fields like
    Saluation -> dropdown
    First Name ->texbox
    Last Name ->textbox
    TOS-> checkbox

    When i look at the wp_usermeta table i do not see all these fields in meta key and what it seems to eb doing is that the existing nick name value its splitting in first name and last name.. so my first question is

    1) Am i looking at the correct table??? if not where is the data that a user enters on register page stored?

    I am also looking to override the activation email message by adding a filter for bp_core_signup_send_validation_email_message.. My code is

    add_filter( 'bp_core_signup_send_validation_email_message', 'RECN_CUSTOM_activation_message', 10, 3 );
    
    function RECN_CUSTOM_activation_message( $message, $user_id, $activate_url ) {
        $user = get_userdata( $user_id );
        return "Hello $user->salutation $user->first_name,$user->last_name.";
    
    Question 2:
    $user->salutation $user->first_name,$user->last_name all return empty string?

    Is that the correct way to retrieve that data?

    Thanks,
    Parag

Viewing 25 results - 526 through 550 (of 1,893 total)
Skip to toolbar