Hey @haydenmsm,
In order to change the label for the fields, you can use one of our translation snippets that we have available in our snippet library. You can use this script as rails to your own custom code https://github.com/impress-org/givewp-snippet-library/blob/master/translation-snippets/advanced-translation-snippet.php.
Your code would look something like this:
function my_give_text_switcher( $translation, $text, $domain ) {
if ( 'give' === $domain ) {
switch ( $translation ) {
case 'First Name' :
$translation = __( 'YOUR TEXT HERE', 'give' );
break;
}
}
return $translation;
}
add_filter( 'gettext', 'my_give_text_switcher', 10, 3 );
Please bear in mind that you’ll need to add all the fields that you want to change and add their translation too.
If you need assistance implementing custom PHP code on your website we have this guide:
https://givewp.com/documentation/resources/adding-custom-functions-to-your-wordpress-website/
Please note that this code snippet is provided as an example of how you can extend GiveWP with code. It’s up to you to implement and customize to your liking. We cannot provide support for custom code on your website, only the code that we create and distribute.
Please let us know if you have further questions on this or need any additional assistance!