mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
6 lines
215 B
Text
6 lines
215 B
Text
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' );
|