From 40a8a42542a547613929a1248c6a999a20d2a050 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Tue, 7 Aug 2018 11:40:51 -0400 Subject: [PATCH] Add anniversary date to export Adding the anniversary date to contact export billing fields. --- setup/adminHooks.php | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/setup/adminHooks.php b/setup/adminHooks.php index a906fe8..1b803f1 100644 --- a/setup/adminHooks.php +++ b/setup/adminHooks.php @@ -137,17 +137,18 @@ add_filter( 'glm-member-db-billing-get-fields', function( $content ){ return array( - 'renewal_date' => 'Renewal Date', - 'billing_fname' => 'Billing First Name', - 'billing_lname' => 'Billing Last Name', - 'billing_addr1' => 'Billing Address 1', - 'billing_addr2' => 'Billing Address 2', - 'billing_city' => 'Billing City', - 'billing_state' => 'Billing State', - 'billing_zip' => 'Billing Zip', - 'billing_country' => 'Billing Country', - 'billing_phone' => 'Billing Phone', - 'billing_fax' => 'Billing Fax', + 'anniversary_date' => 'Anniversary Date', + 'renewal_date' => 'Renewal Date', + 'billing_fname' => 'Billing First Name', + 'billing_lname' => 'Billing Last Name', + 'billing_addr1' => 'Billing Address 1', + 'billing_addr2' => 'Billing Address 2', + 'billing_city' => 'Billing City', + 'billing_state' => 'Billing State', + 'billing_zip' => 'Billing Zip', + 'billing_country' => 'Billing Country', + 'billing_phone' => 'Billing Phone', + 'billing_fax' => 'Billing Fax', ); }, 10, 1 ); -- 2.17.1