Recent Cards
Solved
Plugin Development
-
How would I make this plugin https://github.com/psychobunny/nodebb-plugin-recent-cards only display the recent topics from a specific category, so it would show the latest posts out of a news category or such.
Thanks.
-
What have you tried?
-
@BDHarrington7
I changed this code in library.js (line 32)
topics.getTopicsFromSet('topics:recent', data.req.uid, 0, 19, function(err, topics) {
to
topics.getTopicsFromSet('topics:category:1', data.req.uid, 0, 19, function(err, topics) {
But that's completely wrong I couldn't find any documentation for the API since I guess it makes requests to the API, so I really have no idea.
Copyright © 2024 NodeBB | Contributors