Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save kimcoleman/178f96dd86504f2ef1c28d0df4a2f4c9 to your computer and use it in GitHub Desktop.

Select an option

Save kimcoleman/178f96dd86504f2ef1c28d0df4a2f4c9 to your computer and use it in GitHub Desktop.
Remove the "Membership Level" Edit Section from User Profile Edit if viewing the Profile from the frontend using a plugin like Theme My Login's Profiles Module.
<?php
/**
* Remove the "Membership Level" Edit Section from User Profile Edit
* if viewing the Profile from the frontend using a plugin like
* Theme My Login's Profiles Module.
*
*/
function remove_membership_level_profile_fields_on_frontend() {
if ( ! is_admin() ) {
remove_action( 'show_user_profile', 'pmpro_membership_level_profile_fields' );
remove_action( 'edit_user_profile', 'pmpro_membership_level_profile_fields' );
remove_action( 'personal_options_update', 'pmpro_membership_level_profile_fields_update' );
remove_action( 'edit_user_profile_update', 'pmpro_membership_level_profile_fields_update' );
}
}
add_action( 'init', 'remove_membership_level_profile_fields_on_frontend' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment