Skip to content

Instantly share code, notes, and snippets.

@femiyb
Created January 7, 2020 18:47
Show Gist options
  • Save femiyb/f4018ed8f93380d2726327b47df155e3 to your computer and use it in GitHub Desktop.
Save femiyb/f4018ed8f93380d2726327b47df155e3 to your computer and use it in GitHub Desktop.
<?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