ユーザープロフィールで「...」の代わりに「およびXY他のグループ」を表示

In our community, we found the discoverability of the list of all groups of all users quite bad – the link on the “…” can easily be missed. Especially for users with limited visibility, it can be easy to miss.
Would it be possible to just add a more explicit label to this link?

「いいね!」 3

You probably can’t get the count “XY” without heavier coding, but adding this custom CSS should improve your situation:

dd.groups:last-child > a::after {
  content: 'and more';
}

group_css

I haven’t tested this CSS exhaustively throughout the site, but in a spot check it seems to act only on the groups link on the profile page. Please advise if appears somewhere it doesn’t belong.

(Also, I do agree that the discoverability of ... isn’t great, and a change along these lines in core would be welcome.)

「いいね!」 1