Code-Snippets-Functions/Execute a function on a child site/GiveWP/change-form-label-personal-info-text.txt

5 lines
160 B
Text

add_filter('give_checkout_personal_info_text', 'new_personal_info_text');
function new_personal_info_text() {
return __('Tell us about yourself', 'give');
}