Viewing 14 replies - 1 through 14 (of 14 total)
  • Same question as Caleb.

    Thanks for the plugin. Works like a charm.

    *Bump*

    Thread Starter Caleb

    (@cidesign)

    Still waiting for an answer here…..

    It is almost complete. I have created a mailing list for anybody that is interested in it. I will post updates to it when the plugin is complete.

    Details can be found at https://newuserapprove.com/

    Thread Starter Caleb

    (@cidesign)

    I appreciate it. Thanks.

    Hi There isn’t really an answer here. I just want to remove the link that goes to the admin, which the client does not want users to have. What file can I just go and edit this out of>

    Thanks!

    Tom

    (@tderkowski)

    I’m also eagerly awaiting the ability to customize the new user approved e-mails. I’ve hard-coded this into the plugin for now, but this is ultimately not a sufficient solution as it will get axed by updates.

    Josh has there been any updates regarding this request because I sure need it right about now. Thanks for your great work on this plugin.

    I’m slowly learning how to add the modifier codes to the functions.php in order to modify the email being sent out to approved users, but one question…

    Say I’m running tests creating users right.

    I approved a pending user I created. Checked the email, liked what I saw..

    Then denied the user account. Checked the email again, liked what I saw.

    So finally, I went back and approved the account again, and then I noticed the email I received didn’t have the password.

    The first time I hit approve, the email that was sent out DID contain the password.

    Any reason why the second time being approved would not cause a password to be inserted for the user in the email?

    Here’s the modifying code I added to change the subject line, don’t think it has anything to do with the problem, but what do I know. ??

    /**
    * Modify the subject of a message sent to a user after being approved.
    *
    * @param $message The default message.
    * @return string the updated message.
    */
    function my_custom_subject( $subject ) {
    $subject = ‘STEP 2: Get Approved’;
    return $subject;
    }

    // modify the subject for the approval message
    add_filter( ‘new_user_approve_approve_user_subject’, ‘my_custom_subject’ );

    Version 1.7.1 of the plugin fixes the bug where the password is not showing in the email.

    Very cool. Thank you. Thought I was just going crazy.

    I guess I shall customize this one : new-user-approve/includes/messages.php to change the message sent to approved users ?

    BTW thanks Josh for this great plugin.

    Ok, I was able to cahnge the text by working on new-user-approve/includes/messages.php. Now, would you have a version that would allow to do some cool text with paragraphs and stuff ? Frankly, I will welcome a “pro” paid version.

    Here is some more info on modifying the message sent to approved users. If you use the
    ‘new_user_approve_approve_user_message’ filter you’ll be good to go.

    https://newuserapprove.com/support/faq/edit-email-content/

    BTW, there is an addon that makes this super easy. https://newuserapprove.com/products/options-addon/

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Customize Email Sent to new users’ is closed to new replies.