Skip to:
Content
Pages
Categories
Search
Top
Bottom

Changing the activation email that users get

  • @putnum01

    Participant

    Is there a easy way to change the text of the activation email users get?

Viewing 3 replies - 1 through 3 (of 3 total)
  • @r-a-y

    Keymaster

    There’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');

    @djsteve

    Participant

    This should so become a WP plugin or bpress addon or something.

    @vusisindane

    Participant

    For some really odd reason this is not working for me.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Changing the activation email that users get’ is closed to new replies.
Skip to toolbar