Search Results for 'activation email'
-
AuthorSearch Results
-
February 6, 2014 at 12:36 pm #178015
In reply to: Add users from another DB
stunley
ParticipantActually modemlooper, this plugin doesn’t work either.
After creating a new user, the plugin shows “No unactivated members were found.”I imagine you have to use the registration form, which then sends out an activation email, which is the exact opposite of what I wanted, IE; no email until all the users have been added and the profiles have been created and completed.
December 10, 2013 at 3:47 pm #175367In reply to: Account Activation Email
asieger
ParticipantThanks @mercime and others, users now receive activation emails in their boxes.
Please how do i make Activity Stream the Main Page once a user logs in? Currently on the site where i implemented buddypress, once a user logs in, it takes them back to the index page (home page) of the site.
your responses will be helpful.
Regards
Oladoye SamuelDecember 8, 2013 at 1:41 am #175223In reply to: [Resolved] Help! Lost wp-admin
Cassey’s Designs
ParticipantHi Chris,
Sadly, I believe that you will have to uninstall buddypress in order to access your dashboard to correct the problem. If you can locate the setting in the buddypress files then you can adjust it there and upload that via ftp or your cpanel file manager, but uninstalling and re-installing will be much faster. (Assuming that any major changes you have made have been via a child theme.)
Essentially you told the site that everyone that goes to the login page needs to activate their account therefore no one can login because no one is activated, that is the best way I can think to explain it.
The only time new users will be asked for an activation key is if they attempt to activate their without using the link from their email before logging in.
For example: You register a new account and then go to the activation page before checking your email, here you will be asked to provide the activation key. If you attempt to login before activating you should get a message “ERROR: Your account has not been activated. Check your email for the activation link.”
However, if you register a new account and then go to the email you provided you will have received an email to activate your account. Once you click the link in this email you will be able to login to the account (the email link contains the activation key). This system is to ensure that the user has registered with a valid email that they have access to.
Hope this helps,
CasseyNovember 30, 2013 at 12:02 am #174982In reply to: No Activation email
@mercime
Participant@soccercoach12345 WP/BP versions? Where are you hosted? Have you checked if activation emails are sent and received if you deactivated BuddyPress?
November 17, 2013 at 10:39 pm #174363In reply to: Editing Buddypress Activation Email
shanebp
ModeratorWrite a filter.
buddypress\bp-members\bp-members-functions.php Line 1396
$message = apply_filters( ‘bp_core_signup_send_validation_email_message’, $message, $user_id, $activate_url );
November 17, 2013 at 8:49 pm #174361In reply to: Editing Buddypress Activation Email
xWafflecakes
ParticipantPS: I’ve tried Welcome Pack but that didn’t work. (WP 3.6, BP 1.8.1)
November 13, 2013 at 4:01 am #174165In reply to: Remove User Activations
olumi_day
ParticipantThank you for the prompt response. In my haste, I ended up using this plugin: ( http://www.timersys.com/plugins-wordpress/bp-disable-activation-reloaded ) although it wasn’t the ideal choice since I’m already using a lot of plugins.
I will definitely try this code out although the “Check Your Email to Activate Your Account” notification could still pose a problem. It just sounds like the kind of thing that wouldn’t bother me at first but then I would quickly become nitpicky about. Either way, I’m happy to just have a nice, easy way to override the activation email without the use of a plugin.
I do wonder if the users that had already registered prior to me using this override will be able to now log in just fine without still needing the activation email. I did a few test runs using the plugin I mentioned above and found that users who registered prior still needed the activation code to log in.
Finally, the help tour is a custom plugin built on top of twitter’s bootstrap 3 framework. I found the code for it here: http://bootstraptour.com/
It was very easy to install and only worked because the theme I’m currently using is built on the bootstrap framework.November 13, 2013 at 1:49 am #174160In reply to: Remove User Activations
shanebp
ModeratorYou can avoid the need for activation email by using this code in bp-custom.php
function bp_disable_validation( $user_id ) { global $wpdb; $wpdb->query( $wpdb->prepare( "UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d", $user_id ) ); } add_action( 'bp_core_signup_user', 'disable_validation' ); add_filter( 'bp_registration_needs_activation', '__return_false', 100 );
But the next screen will still inject this $title:
“Check Your Email To Activate Your Account!”Even with a template over-ride!
I think it’s reasonable that if this filter is applied:
add_filter( ‘bp_registration_needs_activation’, ‘__return_false’ );That you shouldn’t need a database operation.
And the $title should not be injected.Currently, the only way I see to change that $title is to hack a core file.
Hacking core files is NOT recommended.
That said, see:
plugins\buddypress\bp-members\bp-members-screens.php and find Line 515.[ I’d love to be wrong about all this and hope somebody has an easier approach. ]
If you’d like to help BP and anyone else trying to solve this problem,
please submit an enhancement ticket at https://buddypress.trac.wordpress.org/
Use the same user / pw you use here.Now… a question for you… On your site http://causeanddesign.com you have a very nice help tour using overlay boxes. The first box says: “Welcome. Every nonprofit deserves good design and good technology.”
Did you write a custom script / plugin for this?
Or find an existing plugin?November 13, 2013 at 1:39 am #174157In reply to: Confirmation Message
Henry
MemberHey @mercime
The answer on Stack Overflow changes the subject line and body text of the activation email. The text @derock299 would like to change is displayed on the registration page (registration.php template). Probably worth changing both though, for a complete custom look and feel 🙂
November 7, 2013 at 8:57 am #173912In reply to: Activation email
Henry
MemberWelcome pack by Paul Gibbs will allow you to customise the text in all emails that get sent out via BuddyPress
https://wordpress.org/plugins/welcome-pack/With reference to the emails not getting through to users, perhaps try reverting to the default theme, deactivate all plugins (aside from BP) and see if the problem is still happening.
October 19, 2013 at 7:16 pm #173105In reply to: Members directory dropdown sort issue (possible bug)
bp-help
ParticipantStill waiting for confirmation if this is a known bug? I really don’t think users that have not activated their account with the activation email should be showing up in the members directory when sorting the members alphabetically because logically they should not be considered members until they have completed the registration and activation process. Any thoughts?
October 18, 2013 at 3:42 pm #173061bp-help
Participant@ubernaut
No it is not supposed to happen but unfortunately it does. I believe it is more of a servers time handling of the activation email that causes this issue. I have seen this happen before and if the user just ignores the enter activation key and just logs in then they are successful.October 18, 2013 at 11:13 am #173051In reply to: Members directory dropdown sort issue (possible bug)
Henry
Member@bphelp I haven’t been able to test this for you yet but I did notice yesterday that non-activated users get given a URL which is visible to anyone. For example, if you completed the registration form on my site and chose username ‘bphelp’ – even before you click on the link in the activation email you will be able to go to
mysite.com/members/bphelp
Here you’d see: Your name, the mystery man avatar etc.
Imagine a site that has lots of spam signups. They’d have hundreds if not thousands on unused URLs.
How is this currently handled by BP?
October 18, 2013 at 7:17 am #173042bp-help
Participant@garima-nag
Worked fine for me! After the user clicks the activation email link test it and see if they can just login even though it asks for an activation key. In other words just ignor that activation key page and login in using the credentials they signed up with. Let us know if they are able to login.October 15, 2013 at 4:23 am #172814In reply to: Login and Password reset link question
bp-help
Participant@nodeadbunnies
1.) You do realize BP is a WP plugin right? It is not its own entity therefor if the user registers with BP activated, they are also registering with WP.
2.) By default if a user enters a wrong password they are then redirected to wp-login.php if you want to include the lost password link there may be some login widget plugins that includes that link, other wise you could get that link from wp-login.php and hard code it into your child themes sidebar.php which may not be a good idea until you get a little more experience. Try searching for plugins that will accomplish this before going that route.
3.) You may want to check the spam folder to see if the activation email went there. If not then check your servers error logs and report back.October 14, 2013 at 12:11 pm #172778In reply to: Registration Process
Brimfulof
ParticipantHi,
I’m trying to edit the message body and I’ve managed using your code @henrywright-1 but in the process I have lost the link that they need to click on. I’m obviously missing a variable, can you help me identify what it is?
This is the code I have:
#------------------------- # Edit activation email #---------------------------- function activation_email_message_filter( $message, $user_id ) { $message = 'Thanks for registering! To complete the activation of your account please click the following link or copy and paste it into your browser\'s address bar:'; return $message; } add_filter('bp_core_signup_send_validation_email_message', 'activation_email_message_filter', 10, 2 );
The email comes through with the edited message text, but the activation ink itself is missing.
October 11, 2013 at 4:32 pm #172686In reply to: Account Activation Email
asieger
ParticipantHi fellows,
@mercime: I deactivated BP and its Plugin and i registered a new user as subscriber but the new user did not get the activation mail too(meanwhile, i tick the box that allows new users to get the credentials), but i (as the administrator) got an email about the newly registered user.So, the problem here is not with BP, its has to do with WP itself. Any suggestion or way out in solving this issues?
I’ll expect your response.
Regards
– SamuelOctober 11, 2013 at 12:48 pm #172672In reply to: Account Activation Email
@mercime
Participant@asieger as hnla mentioned above, deactivate BuddyPress and BP plugins. Can you register/activate an account with BP deactivated?
October 10, 2013 at 9:25 pm #172635In reply to: Email after activation
applegateian
ParticipantGood shout, thanks @henrywright-1
October 10, 2013 at 9:15 pm #172634In reply to: Email after activation
Henry
MemberYou could also try Welcome Pack by Paul Gibbs – it allows you to send a welcome email and also customise the various more emails BuddyPress sends out:
October 10, 2013 at 8:43 pm #172633In reply to: Email after activation
applegateian
ParticipantPerfect, hopefully somebody finds this useful!
October 10, 2013 at 8:36 pm #172632In reply to: Email after activation
applegateian
ParticipantRealise I am replying to my own thread, but just came across this:
Will resolve this thread if it works.
October 10, 2013 at 2:56 pm #172615In reply to: Account Activation Email
asieger
Participant@hnla; thanks.
@sooskriszta; i have checked all the spam folder of the emails used, no such mail as the activation email.Thanks all
_ SamuelOctober 7, 2013 at 7:50 pm #172420In reply to: Account Activation Email
OC2PS
Participant@asieger A rather basic question: Have you checked the Spam folders in your email accounts?
October 7, 2013 at 1:26 pm #172390In reply to: Account Activation Email
Hugo Ashmore
ParticipantI do hope they didn’t really say could only be fixed by buddypress support. Generally email issues are not BP problems, and currently BP has no issues I’m aware of in sending registration emails, which also is really a WP function.
Easy check that should have been run first would have been and still ought to be tried is to disable BP and simply try registering an account under WP.
Often email issues fall under the heading of ‘Domain Record’ issues i.e email servers rejecting an email as it can’t be verified as authorised on the sending domain or there’s no PTR record or SPF record, or simply that the server sendmail is at issue, these though are not really problems that lie with WP or BP which normally happily send out emails.
Search this forum though as these issues have been discussed many times and you’ll find more info in the archives.
-
AuthorSearch Results