Search Results for 'activation email'
-
AuthorSearch Results
-
March 18, 2010 at 4:03 pm #68989
In reply to: I would like to disable Email activation
Paul Wong-Gibbs
KeymasterNext version of Welcome Pack will allow email customisation</plug>
March 18, 2010 at 2:12 pm #68971In reply to: I would like to disable Email activation
ousep
ParticipantTried it out… works perfect.
I just threw that code into bp-custom.php, and that’s all it took.
Instead of disabling the email entirely, perhaps you could give options of customizing the welcome mail? Or would that be too much as a core function?
March 18, 2010 at 2:06 pm #68970In reply to: I would like to disable Email activation
Andy Peatling
KeymasterJust be aware that when you hack the core you will lose your changes on every upgrade. So make a backup if you must.
March 18, 2010 at 1:53 pm #68967In reply to: I would like to disable Email activation
ousep
ParticipantThanks… Will try that out.
In the activation email, I’ve reworded the text to remove the link, and made it a general “How do you do?” mail.
Added a link to recover username/password, to make the mail slightly useful.
March 18, 2010 at 1:19 pm #68964In reply to: I would like to disable Email activation
Andy Peatling
KeymasterIf you put the following code in a plugin then this will disable activation, although the users will still receive an activation email. In any case, they will be able to log straight in and the new account screen will tell them that.
If someone wants to add this to a plugin and release it please do, but I haven’t tested it, so do that first. In the next version I will add an option to disable activation emails too.
function 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' );
function fix_signup_form_validation_text() {
return false;
}
add_filter( 'bp_registration_needs_activation', 'fix_signup_form_validation_text' );March 18, 2010 at 1:12 pm #68963In reply to: I would like to disable Email activation
ousep
ParticipantTheoretically, if we’d like to disable it, is there a way we can define it in wp-config or bp-custom?
We’ve got a workaround, but it involves changing a core file, bp-core-signup.php. We changed this line:
$wpdb->query( $wpdb->prepare( "UPDATE $wpdb->users SET user_status = 2 WHERE ID = %d", $user_id ) );to set the user_status as 0 (activated)
$wpdb->query( $wpdb->prepare( "UPDATE $wpdb->users SET user_status = 0 WHERE ID = %d", $user_id ) );Next, we changed a line in register.php, in a child theme, where we changed the conditional
<?php if ( bp_registration_needs_activation() ) : ?>to
<?php if ( !bp_registration_needs_activation() ) : ?>This solves the problem, but it involves modifying a core file. Any workaround for that?
March 18, 2010 at 10:56 am #68945In reply to: I would like to disable Email activation
Andy Peatling
KeymasterYou don’t want to do that since then anyone can sign up with anyone else’s or an invalid email address.
March 17, 2010 at 8:32 am #68736In reply to: How to disable Email activation
rogscorp
ParticipantI am trying to modify sign-up.php but not successful so far..
Anybody?
March 15, 2010 at 8:05 am #68379In reply to: Not a spammer but marked as a spammer?
janec
ParticipantOK…. I think I know the problem – members who do not click on the activation link will be marked as spammers automatically!
There is just one problem – when I test-registered with one of my email addresses (I used gmail) – gmail automatically trashed the confirmation email AND puts a big red warning sign that said the message was potentially a phishing email.
NO WONDER… my users are probably thinking that it was a fake email or a phishing email IF they even see the confirmation email at all.
Is this an issue that is being brought to attention with buddypress developers?
March 15, 2010 at 4:46 am #68359In reply to: Changing the activation email that users get
djsteve
ParticipantThis should so become a WP plugin or bpress addon or something.
March 14, 2010 at 11:57 pm #68321In reply to: Changing the activation email that users get
r-a-y
KeymasterThere’s no admin feature to change the text of the activation email, but you can apply a filter to it.
Put this in your theme’s functions.php:
function my_activation_email($message) {
$message = str_replace('Thanks for registering! To complete the activation of your account please click the following link:','My message is the best message ever.
Really it is.
So I guess you should activate your account now.', $message);
return $message;
}
add_filter('bp_core_activation_signup_user_notification_message','my_activation_email');March 13, 2010 at 3:07 pm #68104In reply to: bp 1.2.2.1 new users unable to login
rsutaria
MemberI am not a PHP guru- but am just wondering, without PHP mail knowing which servers to use for sending email from, how does the user activation email get sent?
Maybe I’m missing something basic here at my end.. But I’m just trying to understand how this email activation feature works.
March 13, 2010 at 11:09 am #68079In reply to: bp 1.2.2.1 new users unable to login
rsutaria
MemberHow is the sending of email configured? I don’t recall configuring any SMTP server during my installation to let wordpress or buddypress know which accounts to send emails from?
I was using BP 1.2.1 for the past few weeks- so am confused how this new feature works?
I saw a reply elsewhere which said the admin can activate users even if they have not clicked on the activation link in their email. But I did not see any “activate” user option in the admin console.
Any help is appreciated.
March 13, 2010 at 5:56 am #68069In reply to: Email Activation not being sent in upgraded BP 1.2.2
gregpill
ParticipantOkay main the problem has been resolved in 1.2.2.1 – thanks!
Any thoughts on the other two questions?
Redirect / message for non-activated accounts?
Resend of activation email?
March 12, 2010 at 9:14 pm #68033In reply to: Email notification not working
chembro303
MemberTHANK YOU @ruthlessbookie. I just set up a fresh install of the latest WP single and BP 1.2.2.1 on bluehost. Tried registering a new user – no activation email sent. Was about to throw something through a wall after spending 3 hours on this and at least it’s working now after using the “mail-from” plugin. Jeez. Shouldn’t have to do that, and I wish I understood the core issue… but thanks again.
March 12, 2010 at 2:31 pm #67951In reply to: Email notification not working
ruthlessbookie
Memberso far, I’ve still not been able to get wpmu activation emails to work with buddypress activated – de-activated, wpmu sends all the emails. I’m really confused about this, and a bit surprised that I’m the only one who seems to be experiencing this issue.
March 10, 2010 at 11:03 pm #67660In reply to: Email notification not working
ruthlessbookie
MemberI feel like I’m on the verge of solving this problem, but there’s so much deprecated code between my various BP upgrades and my theme that was designed before the switch to parent/child. I have a new theme that works great (based in part on DetoX), but I wish I could just isolate the email activation issue.
The ironic part is I only run a main blog, users don’t get the blog option – so I really would be better off porting this from WPMU to WP, but after tons of attempts, can’t seem to make that happen yet.
so…
I’ll keep trying to figure this out, and hopefully someone else who has solved this issue already will chime in with some words of wisdom.
March 10, 2010 at 9:42 pm #67633In reply to: Email notification not working
ruthlessbookie
MemberI was unsuccessful with that.
But the bigger question is: why do the activation emails stop when BP is activated?
I’m thinking that there’s some foul-up over the various upgrades since I installed this back in September 09, as when I do a fresh manual install on the same server/domain in a test directory, everything works fine.
I’m wondering if backing up wp-content folder then deleting everything and re-installing a fresh WPMU/BP to existing database then re-installing avatars, images and various plugins etc. will do the trick.
March 10, 2010 at 9:28 pm #67629In reply to: Email notification not working
Ann Christine
ParticipantUnfortunately I have the same problem as the two of you. I am running fresh installations – newest WPMU and BP.
It was running all fine.
Now I (admin) get no email notifications at all – users do not receive any either. The activation emails are not being sent. The WPMU ones are not sent out either.
I am using a catch-all email on my email host to be able to sign up with different emails on the same domain.
First thing I was thinking was whether BP or WP was thinking all this signup from the same email domain was SPAM and therefore closing down signups from my IP or whatever.
I have searched for answers and found this: https://mu.wordpress.org/forums/topic/13039
Apparently some hosts do not allow automated emails to be sent out.
(However, if my host do not allow this, how come it worked fine for two weeks?)
Only plugin I have installed is the cets-blog-defaults. I have tried to deactivate it, but it does not help.
This is really frustrating
March 10, 2010 at 6:39 pm #67606In reply to: Email notification not working
ruthlessbookie
Memberok, here’s the results:
1. created a full mirror of my live site in a test directory, including a separate copy of the database.
2. de-activated all plugins, including buddypress
3. chose a non-buddypress theme in admin
4. ftp’d a fresh copy of wpmu to the directory – surprisingly, this didn’t break anything.
5. Before re-activating any plugins, I successfully registered, all activation / notification emails worked fine.
6. re-activated BuddyPress
7. tried to register a new member, and now I have nothing – no activation / notification emails.
Am I wrong to conclude this is a BuddyPress issue?
March 8, 2010 at 1:47 pm #67204In reply to: Remove "Activation" page on user registration
ruthlessbookie
Memberin all my test installs of 1.2 on wp and wpmu I’ve never had an activation email for new user signups – I just assumed the feature was removed…it’s still there?
March 7, 2010 at 3:56 pm #67104thekmen
Participantthanks etiviti,
just realised using BuddyPress 1.2.1 and WP (single) 2.9.2 there is no activation email sent, the account is activated automatically & the user can log in straight away.
I am presuming this is the issue as the user doesn’t have to click an activation link?
March 6, 2010 at 5:55 am #66973In reply to: Remove "Activation" page on user registration
Mike Pratt
Participant@wowfood3 but activation emails are actually sent out. Why isn’t your install sending them?
March 5, 2010 at 7:21 pm #66917In reply to: Whitescreen on Activation Key
gregfielding
ParticipantIf I just go to the activate screen
http://housingstorm.com/activate
it asks for a key. But if I click from the email, i get white screen
March 3, 2010 at 7:31 am #66478mingya
Memberanyone knows any simple plugins to use for email activation on new registration?
-
AuthorSearch Results