Home / Admin / Change “Email” On Donation Form
Duplicate Snippet

Embed Snippet on Your Site

Change “Email” On Donation Form

This will change wording on the donation form for the "Email" field, although this snippet can be modified for any label in the area that shows the core user fields.

Code Preview
php
<?php
add_filter( 'charitable_default_donation_fields', 'charitable_change_default_donation_fields', 10, 1);
function charitable_change_default_donation_fields( $defaults ) {
	$defaults['email']['donation_form']['label'] = 'Please Provide Email';
	return $defaults;
}

Comments

Add a Comment