Created
November 29, 2024 23:32
-
-
Save rickalday/212ba1039cfbd7542962745879bf7885 to your computer and use it in GitHub Desktop.
Export Gift Aid First and Last Names
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
add_filter( 'give_gift_aid_export_get_data', static function($data) { | |
foreach($data as $key => $datakey){ | |
$first_name = give_get_payment_meta($datakey['gift_aid_donation_id'], '_give_donor_billing_first_name', true); | |
$last_name = give_get_payment_meta($datakey['gift_aid_donation_id'], '_give_donor_billing_last_name', true); | |
$data[$key]['gift_aid_first_name'] = $first_name; | |
$data[$key]['gift_aid_last_name'] = $last_name; | |
} | |
return $data; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment