Change the Anonymous Donation text on the form’s front end in GiveWP on child sites.
Snippet Type
Execute on Child Sites
Snippet
function custom_anonymous_donation_checkbox_label($text) {
$text = 'YOUR CUSTOM TEXT HERE';
return $text;
}
add_filter( 'give_anonymous_donation_checkbox_label', 'custom_anonymous_donation_checkbox_label' );