Remove the phone field on the profile form in Charitable

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

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