Sometimes the WordPress Jetpack plugin suits my purposes, but I hate all those nags it presents in the WordPress admin. Adding this one-liner to your child theme’s functions.php or your custom plugin will turn off all those upsells:

/* Remove Jetpack upsell messages */
add_filter( 'jetpack_just_in_time_msgs', '__return_false' );

HT: Matt Mederios