Hey Erwin,
We don’t have a BB setting for that. But it can be achieved by adding a function. You can paste the code below to your child theme’s functions.php
file and it should allow you to change it.
// Translate the word Name on the Subscribe form module
function my_text_with_context_translations( $translated, $text, $context, $domain ) {
if ( 'fl-builder' == $domain ) {
if ( 'Name' == $text && 'First and last name.' == $context ) {
$translated = 'New word for name';
}
}
return $translated;
}
add_filter( 'gettext_with_context', 'my_text_with_context_translations', 10, 4 );
Ben