Created
January 7, 2020 18:47
-
-
Save femiyb/f4018ed8f93380d2726327b47df155e3 to your computer and use it in GitHub Desktop.
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 | |
function my_pmpro_members_list_csv_heading($csv_header) | |
{ | |
$heading = explode(',', $csv_header); | |
$remove = array('billing firstname', 'billing lastname', 'address1', 'address2', 'city', 'state', 'zipcode', 'country', 'phone'); | |
foreach($heading as $key => $title) | |
{ | |
if(in_array($title, $remove)) | |
unset($heading[$key]); | |
} | |
$csv_header = implode(',', $heading); | |
return $csv_header; | |
} | |
add_filter('pmpro_members_list_csv_heading', 'my_pmpro_members_list_csv_heading'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment