Skip to:
Content
Pages
Categories
Search
Top
Bottom

Wording for "Check Your Email For Activation"


  • Tator
    Participant

    @natleg22

    after my users have signed up it takes them to the screen

    Check Your Email To Activate Your Account!
    You have successfully created your account! To begin using this site you will need to activate your account via the email we have just sent to your address.

    I was wondering if there was a way to add something at the end “Sometimes are activation emails end up in users spam/junk folders, so please check there”

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

  • bp-help
    Participant

    @bphelp

    @natleg22
    The correct approach to this is to use a language file. Please review:

    Customizing Labels, Messages, and URLs

    @natleg22,

    You can copy over the file to your theme and edit accordingly

    or use gettext function

    e.g

    ‘function change_word_test( $translated_text, $text, $domain ) {
    switch ( $translated_text ) {
    case ‘Put all the words here’ :
    $translated_text = __( ‘Put your version of the words here’ );
    break;

    }
    return $translated_text;
    }
    ‘add_filter( ‘gettext’, ‘change_word_test’ );’

    or simply follow @bphelp, instruction


    Tator
    Participant

    @natleg22

    Sorry but I am really confused with bphelp’s link. Could you walk me through in an easier to follow approach? Possibly step by step?


    bp-help
    Participant

    @bphelp

    @natleg22
    Re-read the instructions please it is the most proper way to complete your requirement and the instructions are explained clearly in the link provided.


    Tator
    Participant

    @natleg22

    I read the instructions again. However there seems to be the issue of generating an .MO I can’t seem to do that. When I try to drag my .mo and .po saved files into my directory I get a “Warning cannot write into a temporary folder”


    bp-help
    Participant

    @bphelp

    @natleg22
    If you followed the instructions you shouldn’t have an issue. I always translate on my local dev environment and then FTP it to the live server. If you feel uncomfortable doing this then you may want to consider hiring someone to do it for you. No more than your asking for it shouldn’t cost much more than $30.00 but that is totally up to the developer.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Wording for "Check Your Email For Activation"’ is closed to new replies.
Skip to toolbar