Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save dparker1005/4524ea86308bdf79c7d2fecf3c7264df to your computer and use it in GitHub Desktop.
Save dparker1005/4524ea86308bdf79c7d2fecf3c7264df to your computer and use it in GitHub Desktop.
Removes profile fields added by PMPro Member Directory
<?php
// Copy from below here...
/**
* Removes profile fields added by PMPro Member Directory
*/
function my_pmpromd_remove_extra_profile_fields() {
// Remove showing...
remove_action( 'show_user_profile', 'pmpromd_show_extra_profile_fields' );
remove_action( 'edit_user_profile', 'pmpromd_show_extra_profile_fields' );
// Remove saving...
remove_action( 'personal_options_update', 'pmpromd_save_extra_profile_fields' );
remove_action( 'edit_user_profile_update', 'pmpromd_save_extra_profile_fields' );
}
add_action( 'init', 'my_pmpromd_remove_extra_profile_fields' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment