Remove the phone field on the donation form in Charitable

Remove the phone field on the donation form in Charitable on child sites.

Snippet Type

Execute on Child Sites

Snippet

function ed_remove_phone_field_from_donation_form( $fields ) {
    unset( $fields['phone'] );
    return $fields;
}

add_filter( 'charitable_donation_form_user_fields', 'ed_remove_phone_field_from_donation_form' );

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