Search Results for 'activation email'
-
Search Results
-
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,
IngeOnce 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?
Hi,
I have a problem when it comes to registration confirmation email, the link is not clickable.

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 intobp_core_activate_accountinbp_core_screen_activation()?
– what are the meanings of the ints foruser_statusin thewp_userstable? Seems like WordPress doesn’t use it and Buddypress uses it but only0and2. Maybe use1as a custom pending status?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.
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!
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.
Topic: Registration not working
The registration process on my website is not working.
wordpress 4.4.1
buddypress 1.3.3
http://www.pandadar.comAfter 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!
Topic: activation
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!
Topic: new user emails
Ok, new to BP..
Running
WP: 4.4.1
BP: 2.4.3
site: http://www.bluestarguide.com
Using WOOP Theme by GeoDirectoryUsers 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?
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
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.
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_messageAre 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 ?
Topic: Login redirect not working
I have used a plugin on a multisite network. There are two issues that need fixing.
First, the login redirect needs to be directed to the users profile page. Currently is it going to the home page.
Second, the “activation confirmation email” is redirecting to /wp-login.php. I would like this to also go to the users profile page please?
Kind regards,
Topic: Problem with User activation
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."; }Topic: How to fix Activations
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?
Topic: Fail to get activation email
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.
Topic: Activation emails delaying
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.Hello All,
I added a few profile fields like
Saluation -> dropdown
First Name ->texbox
Last Name ->textbox
TOS-> checkboxWhen 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