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.