Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @pochi555

    What’s the name of the Profile Tab? Is it a comments tab?

    Regards,

    Thread Starter pochi555

    (@pochi555)

    Thank you for your reply.
    It is “Subscriptions” button of forums tab.

    Regards,

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Hi @pochi555

    That tabs are added by WPForo plugin. You can try the following code snippet to hide the Subscriptions tab:

    add_filter("um_profile_tabs","um_020822_wpforo_tabs", 999999 );
    add_filter("um_user_profile_tabs","um_020822_wpforo_tabs", 999999 );
    function um_020822_wpforo_tabs( $tabs ){
        
        unset( $tabs['foro']['subnav']['subscriptions'] );
    
        remove_action('um_profile_content_foro_subscriptions', array('wpForo_UM', 'um_user_subscriptions') );
        
        return $tabs;
    }

    You can add it to your theme/child-theme’s functions.php file or use the Code Snippet plugin to run the code.

    Regards,

    Thread Starter pochi555

    (@pochi555)

    Thank you for your reply.
    This code solved the problem!

    Regards,

    Plugin Contributor Champ Camba

    (@champsupertramp)

    Thanks for letting us know.

    Regards,

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Is there a way to hide the “Subscriptions” button on the account page?’ is closed to new replies.