Created
January 12, 2021 12:48
-
-
Save nikitasinelnikov/6a694e87c6d30b03afc5591acdd23cbc to your computer and use it in GitHub Desktop.
Ultimate Member - Followers: How to remove followers bar from the user profile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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