Skip to:
Content
Pages
Categories
Search
Top
Bottom

Changing the activation email that users get

Viewing 3 replies - 1 through 3 (of 3 total)

  • r-a-y
    Keymaster

    @r-a-y

    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

    @djsteve

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


    vusisindane
    Participant

    @vusisindane

    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