Okay
  Public Ticket #3102729
WPLMS LOCO TRANSLATOR ISSUE
Closed

Comments

  • poq33882 started the conversation

    Hello I wrote a topic about changing a text in registration page

    https://wplms.io/support/forums/topic/change-activate-your-account-message/

    But I cannot have reply after 2 weeks

    So I re-write this topic sothat manager can easily see.

    Thank youl.

  •  390
    Ripul replied

    You will have to translate it as it is hard coded in BuddyPress and since we have to copy those templates in the theme, you will find it in theme translation files.

  • poq33882 replied

    I found that string at wplms and buddypress.

    So I translate all the string activate your account to korean.

    but does not works.

    So I goto vibe bp-> refresh navigation but does not change.

    I seems like the language not applied to real homepage.

    I tried to find at wplms, wplms child theme, buddypress, vibe-bp ..  checked all the plugins that connected my site

    but does not work

    even the buttons that complete sign-up buttons does not changed.

    should i change loco translator to other plugins or something?

    or should I wait until that process is done?(since we have to copy those templates in the theme, you will find it in theme translation files.) 

    I found string at wplms but seems like not working

    https://postimg.cc/7fHTcp85

    https://postimg.cc/WFmhY75m

    it seems like strings is not overrided...I don't know why

    everything except buddypress does work well

  • [deleted] replied

    You need to translate that string in wplms theme . 

    If that also dont work then please add this code in your wplms-customizer.php file in wplms customizer plugin : 

    function my_text_strings( $translated_text, $text, $domain ) {
    switch ( $translated_text ) {
    case 'Activate your Account' :
    $translated_text = __( 'Activate your Account NEW', 'buddypress' );
    break;
    }
    return $translated_text;
    }
    add_filter( 'gettext', 'my_text_strings', 20, 3 );