Description
This filter hook allows you to change the heading shown on the WP user profile page for the WP-Members additional fields.
Usage
add_filter( 'wpmem_admin_profile_heading', 'my_profile_heading' ); function my_profile_heading( $heading ) { return 'My Extra Fields'; }