Skip to content

Instantly share code, notes, and snippets.

@nikitasinelnikov
Created January 12, 2021 12:48
Show Gist options
  • Save nikitasinelnikov/6a694e87c6d30b03afc5591acdd23cbc to your computer and use it in GitHub Desktop.
Save nikitasinelnikov/6a694e87c6d30b03afc5591acdd23cbc to your computer and use it in GitHub Desktop.
Ultimate Member - Followers: How to remove followers bar from the user profile
function um_custom_profile_before_header( $args ) {
remove_filter( 'um_profile_tabs', 'um_followers_add_tabs', 2000 );
remove_action( 'um_profile_navbar', 'um_followers_add_profile_bar', 4 );
}
add_action( 'um_profile_before_header', 'um_custom_profile_before_header', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment