Remove Ultimate Member Privacy tab

I would like to delete privacy tab from the account page of Ultimate Member Plugin

  • Majid
    • Recruit

    Hey Pablo Beitman !

    I hope you are having a nice weekend :slight_smile:

    Please try add the following code to your theme functions.php file, it will remove Privacy tab from the menu

    function remove_privacy( $tabs ) {
    unset( $tabs[300] );
    return $tabs;
    }
    add_filter( 'um_account_page_default_tabs_hook', 'remove_privacy' );

    Cheers,

    Majid