The “Cheers” in the user card and user profile are being displayed and the Leaderboard link leads to an invalid page
Expected behavior would be to not display the Cheers in the User card or user profile to users who are not added to the leaderboard “visible to groups” setting
As a quick and dirty workaround, I used the following CSS below. You could even wrap around specific “body not staff” CSS to only apply it to regular and anon users so that the Cheers are still visible to admins and mods.
//Cheers score hidden in user card
.user-card-metadata-outlet.gamification-score {
display: none;
}
//Cheers score hidden in user profile (if it's actually the last <div> inside that <dl> tag and no other plugin or tc adds it's own div after that)
body.user-summary-page #collapsed-info-panel > dl> div:last-child {
display:none;
}