0
votes
1answer
38 views

Allow users to register as a higher roll than default with code

By default all new registrants for my site are assigned the roll "contributor" and then I make them request an upgrade to an "author" account through a form. I also send out invitations to join the ...
3
votes
1answer
128 views

Send a confirmation of user role upgrade conditionally

I'm using this snippet of code to send a confirmation email to user's when their account is upgraded to a new user role. function user_role_update( $user_id, $new_role ) { $site_url = ...
0
votes
1answer
130 views

Send confirmation email when a user's role is upgraded

I've been searching around for a solution but am coming up dry. I need to have a confirmation email sent to users when their role is upgraded. By default users are signed up as contributors and make ...