Skip to content

Instantly share code, notes, and snippets.

@kimcoleman
Last active October 7, 2021 17:27
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimcoleman/4c344bbefc3c7c293f0a973740be3f89 to your computer and use it in GitHub Desktop.
Save kimcoleman/4c344bbefc3c7c293f0a973740be3f89 to your computer and use it in GitHub Desktop.
Remove default columns from the Members List. In this example, we are removing Level and Level ID columns.
<?php
/**
* Remove default columns from the Members List. In this example, we are removing Level and Level ID columns.
* You can also optionally toggle these columns off manually in the "Screen Options" area.
*
* You can add this recipe to your site by creating a custom plugin
* or using the Code Snippets plugin available for free in the WordPress repository.
* Read this companion article for step-by-step directions on either method.
* https://www.paidmembershipspro.com/create-a-plugin-for-pmpro-customizations/
*
*/
function custom_manage_memberslist_columns( $columns ) {
unset( $columns['membership'] );
unset( $columns['membership_id'] );
return $columns;
}
add_filter( 'pmpro_manage_memberslist_columns', 'custom_manage_memberslist_columns' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment