Search Results for 'activation email'
-
AuthorSearch Results
-
March 12, 2009 at 2:52 pm #39827devwebParticipant
I have reCAPTCHA installed and TOS with tick box, I also have the password plugin installed which seems to be working nicely so that the user can create their own password.
Thanks for confirming, I shall give this a go and see what happens!
Cheers J
March 12, 2009 at 2:25 pm #39825John James JacobyKeymasterWell, if I understand correctly it certainly seems possible, considering its pretty much the way that WordPress installation goes.
You install WordPress and are provided a login (“admin”) and a randomized password.
If you’re looking for code to try to tap into, or an example of how to go about it, that would be where I would look first?
The next step in your theory would be to consider how to handle spam registrations in the event that user never sees the pw and never logs in to your website. Maybe take a look at the Register Plus plugin for WordPress.org to get some ideas also?
February 19, 2009 at 2:08 pm #38339In reply to: Add Friend – not adding
Adam W. WarnerParticipant@ Burt,
Not trying to derail this thread, but didn’t know how else to get your attention. I signed up for your site and haven’t received an activation email. Just wanted to give you a heads up in case something was awry…
February 17, 2009 at 11:29 am #38155In reply to: Trunk r1128 (&RC-1) localization problem
SgruntParticipanthi Arturo: activity feed ok, registration and activation email ok, widget ok.
i’m using an old italian translation, maybe i will update the localization soon.
February 11, 2009 at 8:01 am #37676Paul Wong-GibbsKeymasterThe only thing you can’t change safely is some of the subject lines of the emails. If that’s not 100% essential to the launch of your site, I would suggest waiting for the next release of WPMU – or just running a copy from trunk.
However if you follow the link above you should be able to find out what file you need to change.
February 11, 2009 at 3:23 am #37665life2000ParticipantThank you DJPaul;
Then at this point what steps should we take to change the message? I assume we don’t need a plugin, but just changing the text somewhere in MU files, right? But where?
I would appreciate your response.
Thanks so much;
vida
February 10, 2009 at 7:56 pm #37641Paul Wong-GibbsKeymasterFYI https://trac.mu.wordpress.org/ticket/894#comment:3 has added a hook so we can customise the subject line of the email sent to new users (accounts) after activation.
February 8, 2009 at 12:18 pm #37464Paul Wong-GibbsKeymasterKevinRyman: please email me. I’m only asking because I haven’t got anywhere ready to upload a file yet. Thanks.
February 8, 2009 at 6:44 am #37442Kevin RymanParticipantDJPaul sign me up for testing too!
February 7, 2009 at 11:50 pm #37436Adam W. WarnerParticipantI couldn’t find any existing plugin…obviously;)
DJPaul, is it cool if I test your plugin?
February 7, 2009 at 11:17 pm #37433Burt AdsitParticipantDJPaul, I just saw your comments about this on mu trac. Nice find!
February 7, 2009 at 6:06 pm #37423Paul Wong-GibbsKeymasterVida
Email me at djpaul at gmail dot com. I’ve spent sometime shoehorning this into a “proper” plugin – it’s not complete but would appreciate it if you could test with what I’ve got so far.
February 7, 2009 at 12:43 am #37401life2000ParticipantHi DJPaul:
So, I created the little plugin and placed it in wp-content/mu-plugin folder.
I then went back to the “welcome” box to make the changes to the outgoing text. No changes were made. Sorry for being slow here. But these are the questions I have right now!
1) I have no idea what to do with this step you mentioned above:
“Sorry, forgot to add. Use these tokens in your update_welcome_user_email function to tell WordPress where to insert the relevant values: USERNAME PASSWORD LOGINLINK SITE_NAME”
2) After I create the file and place it in the Mu plugin, where should I go to customize my final message going to the user.
I really appreciate the help.
Thanks so much;
Vida
February 7, 2009 at 12:18 am #37399Paul Wong-GibbsKeymasterlife2000: Make a new file in your wp-content/mu-plugins/ folder. Call it what you want but make the extension .php.
Put this tag at the top of the file: <?php
Copy and paste the code from above underneath it
And at the bottom of the file, put this: ?>
Save it and it should work immediately. Make a new test user to see if the message changes.
February 6, 2009 at 9:50 pm #37391Adam W. WarnerParticipantThere has to be an MU plugin already put together for this somewhere no? I am looking now…
February 6, 2009 at 9:03 pm #37388life2000ParticipantHi DJPaul:
Thank you for your reply.
How do I get to “update_welcome_user_email” at the outset? Or better said, where do I begin to start these changes and filters. BP Core files? WPMU files?
Sorry, still trying to get the hang of it all:)
Thanks so much;
vida
February 6, 2009 at 9:57 am #37352Paul Wong-GibbsKeymasterSorry, forgot to add. Use these tokens in your update_welcome_user_email function to tell WordPress where to insert the relevant values:
USERNAME PASSWORD LOGINLINK SITE_NAME
February 6, 2009 at 9:55 am #37351Paul Wong-GibbsKeymasterHi life2000
You need to write a filter to hook into the update_welcome_user_email action, like so:
add_filter('update_welcome_user_email', 'filter_newuseremail_dm', 1, 4);
function filter_newuseremail_dm($welcome_email, $user_id, $password, $meta) {
return "body text of your email";
}
If you want to send an email formatted with HTML, you also need to do this:
add_filter('wp_mail_content_type', 'newuseremail_content_type_dm', 1);
function newuseremail_content_type_dm() {
return 'text/html';
}
February 4, 2009 at 7:23 am #37224life2000ParticipantAlmost solved! Password not a problem.
I just noticed that I can easily change the password using the “settings” on the profile page. It’s awesome!
I won’t be giving them a blog yet. So that won’t be a problem.
So, all set. All I have to do now is change the text on the last activation email sent to users. It looks rather unfriendly with the title: “dear user” and the signature “WordPress”.
Other than that, it’s all cool.
THANK YOU SO MUCH.
February 2, 2009 at 11:38 pm #37144life2000ParticipantAll we need to do is to direct them to their profile page withing Buddypress site after they log in. Is there a way to modify the email messages that go out during and after activation process?
This problem has burned a hole in my brain for the last 24 hours.
HELP PLEASE!
January 13, 2009 at 9:07 pm #36247In reply to: Next BPDEV plugin? Here your proposal
Brad WilliamsParticipantdisable email activation on new sign-ups. I know it’s more of an MU specific plugin, but there are a LOT of people who could use this (including myself!)
January 9, 2009 at 7:15 am #35937In reply to: No admin bar in blogs
Burt AdsitParticipantThere’s no admin bar in the login form no.
I’m not sure what email link you are referring to. After signing up a user gets an email with an activation link and then a password and then logs in with a temp password to their blog.
To get to the admin backend (dashboard) of any blog you use: myblog.mysite.com/wp-admin/ or after logging in, the user has the option of using the menu bar’s ‘my blogs’ > ‘my new blog’ ><flyout menu> ‘dashboard’
That’s also the admin area of the blog.
There isn’t a ‘bbpress bar’ that I’m aware of. There’s a buddypress bar that has a ‘my account’ menu where you can visit your profile and other options.
December 21, 2008 at 12:43 am #34690In reply to: Moderate Users and New Blogs
Burt AdsitParticipantLemme take a look at that area.
Yep, bp does snag the ‘wpmu_signup_user_notification’ event and doesn’t allow mu to do it’s thing. Looks like bp takes over the email to the user with the user’s activation link. Sorry, I just thought bp just added some xprofile stuff.
Wonder why it traps the email activation to the user? Gonna go look.
December 15, 2008 at 12:09 pm #34413In reply to: activation email / new users
mezuMemberHi,
Had the same problem. The I did a fresh install and used an email address on the same domain as the admin’s email: eg. site = mybp.co.za and admin email = admin@myby.co.za
In my first installs I was using my work email during installation and for some reason it would not work.
Hope this helps
December 15, 2008 at 9:26 am #34406In reply to: activation email / new users
Burt AdsitParticipantDid you check your mail options settings in mu?
yourdomain.org/wp-admin/options.php
mailserver_login
mailserver_pass
mailserver_port
mailserver_url
They happy?
-
AuthorSearch Results