I need to translate COMPLETE SIGN UP in the Register Page and its imposible with Loco Translate.
I tried also this code (in WPLMS Customizer plugin) but doent work:
/Traducir Complete Sign Up/
add_filter('gettext', 'avada_kedavara', 20, 3);
function avada_kedavara($translated_text, $untranslated_text, $domain) {
if ( $untranslated_text == 'COMPLETE SIGN UP') {
return 'VALIDAR REGISTRO';
}
return $translated_text;
}
Hello,
what is the issue??
please share your page url and screenshots. i will have a look
Hi,
I think my question its clear, anyway, look here. I need translate COMPLETE SIGN UP button
https://cursospilatesonline.com/alta-alumnos/
you have to use this code : in the wp-admin >> wplms >> google analytics codes >> footer.
<script>
jQuery(document).ready(function($){
$('input#signup_submit').val(' Complete Registro');
});
</script>
for better understanding refer this link: https://wplms.io/support/forums/topic/the-complete-sign-up-button-does-not-translate/
Did you update the pot file of the theme ? as shared here :
https://wplms.io/support/knowledge-base/3-9-9/
yes, I did and doesnt works
have you tried the solution i provided above.
you have to use this code : in the wp-admin >> wplms >> google analytics codes >> footer.
<script>
jQuery(document).ready(function($){
$('input#signup_submit').val(' Complete Registro');
});
</script>