Comments poq33882 started the conversationAugust 12, 2022 at 10:06amHello 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. 390Ripul repliedAugust 15, 2022 at 9:39amYou 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 repliedAugust 15, 2022 at 11:18pmI 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 workinghttps://postimg.cc/7fHTcp85https://postimg.cc/WFmhY75mit seems like strings is not overrided...I don't know whyeverything except buddypress does work well[deleted] repliedAugust 16, 2022 at 2:43pmYou 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 ); Sign in to reply ...
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.
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.
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
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 );