• Resolved pre20

    (@pre20)


    Hi,

    How can I delete the default Posts tab in profile view?

    Thanks

    • This topic was modified 8 years, 9 months ago by pre20.
Viewing 1 replies (of 1 total)
  • This gist shows how to add a tab, but the same filter can be used to remove a tab as well. Here’s what I did.

    /* Remove a tab from user pages */
    add_filter('um_profile_tabs', 'pages_tab', 1000 );
    function pages_tab( $tabs ) {
        unset($tabs['posts']);	
        return $tabs;
    }
Viewing 1 replies (of 1 total)

The topic ‘Remove default profile tab’ is closed to new replies.