Hide Modern Tribe News from dashboard

Home Forums Calendar Products Events Calendar PRO Hide Modern Tribe News from dashboard

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1352149
    Mike Thies
    Participant

    Curious as to why this would show to non-administrators? How do we hide it from the member logged in dashboard without forcing them to adust screen options?

    Thanks!

    #1352265
    Mathew
    Participant

    Hello,

    There’s two ways to accomplish this.

    This will disable it for everyone. Place the code in the wp-config.php file.

    
    
    define('TRIBE_HIDE_UPSELL', true);
    
    

    This will disable it for everyone except site admins. You can alter the IF statement depending on the role you want to target. Place it in your custom functions.php.

    
    
    function remove_tribe_dashboard_widget() {
    	if ( ! is_super_admin() ) { // Set to whatever role you want to target
    		remove_meta_box('tribe_dashboard_widget', 'dashboard', 'normal');
    	}
    }
    add_action('wp_dashboard_setup', 'remove_tribe_dashboard_widget');
    
    

    Hope this helps.

    #1352311
    Mike Thies
    Participant

    Thanks, that did it.

    #1352562

    Glad we could help, you are welcome back in our support forums any time!

    For now, I am going to close this thread.

    Have a great week!

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Hide Modern Tribe News from dashboard’ is closed to new replies.