Remove the phone field on the profile form in Charitable on child sites.
Snippet Type
Execute on Child Sites
Snippet
function ed_remove_phone_field_from_profile_form( $fields ) {
unset( $fields['phone'] );
return $fields;
}
add_filter( 'charitable_user_address_fields', 'ed_remove_phone_field_from_donation_form' );