Hi Rainer,
I just realized you’re speaking of the sub labels and not the labels themselves. I tried changing this on my end and to my surprise there is no easy way to do this.
I’ve put in a new feature request to hopefully have this functionality implemented into weForms in a future plugin update.
In the meantime you can choose the option to “Hide Sub Labels” and replace the name fields with placeholder text for first and last name.
https://snipboard.io/iCWOyJ.jpg
If you’re comfortable with code you can also try adding this snippet to your themes functions.php file or a code snippets plugin and it may work for you as well.
function weforms_change_strings( $translations, $text, $domain ) {
if ( 'weforms' === $domain ) {
if ( 'First' === $text ) {
return 'custom first';
}
if ( 'Last' === $text ) {
return 'custom last';
}
}
return $translations;
}
add_filter( 'gettext', 'weforms_change_strings', 10, 3 );
I really hope this helps! Please let us know if we can answer anything else for you.