Forked from https://github.com/dangerusslee/nodebb-plugin-category-sort-by-votes-next to be published and original Author is https://github.com/wktang/nodebb-plugin-category-sort-by-votes who has not been online to maintain this plugin
Adds ability to sort topic by votes within a category to your NodeBB.
-
Install it from NodeBB Admin Panel, or
npm install nodebb-plugin-category-sort-by-votes
- Go to the ACP (Admin Control Panel).
- Activate plugin and reload NodeBB.
- Click Plugins -> Category Sort to go to the Plugin's settings.
- Click "Re Index" to index all topics (see below screenshot).
- Go to any category, select "Most votes" from the "Sort by" dropdown and it should work!
Feature of sorting by votes use cid:[cid]:tids:votes
as key, while it is not supported by NodeBB.So we must recreate the index to make it work.
If "reindex" is not applied before you use "Sort By Votes" option in the category page, the category page will be blank.
We also use action:post.downvote
, action:post.unvote
, action:post.upvote
hook to listen user actions and dynamically update the sortedSet which use cid:[cid]:tids:votes
as key.