Change the Anonymous Donation text on the form's front end in GiveWP

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' );

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.