Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hi Team NodeBB,
I need to add top posters ( Max 10 ) section on homepage. I am using theme-harmony and NodeBB version (3.1.3)
Could you please guide me how can i do this ?
Ref.
Thanks & Regards
You need to build a widget to display that, getting the data for the top posters can be done like below.
const uids = await db.getSortedSetRevRange('users:postcount', 0, 9); const userData = await user.getUserData(uids);
I will add a top posters widget to widget-essentials plugin since it is a pretty common request.
@baris That would be great. Thanks for this