XF 2.1 Want to show only the reaction with most selections in thread list view.

arms

Well-known member
What would be the best way to only show the reaction with the most selections.

Are the selections ordered with top selection being first?

I'm using:
Code:
.reactionSummary li:not(:first-child) {
    display: none;
}
 
Top Bottom