Found the solution, It turns out that I had missed this blog post before upgrading to 1.4.x:
./nodebb build[nodebb-plugin-feed] NodeBB Feed Plugin
-
@dogs thanks for reporting, it will redirect to login now.
-
I get an error on activation of this plugin - see below
TypeError: controllerHelpers.getSelectedCategory is not a function at renderFeed (/home/phenomlab/nodebb/node_modules/nodebb-plugin-feed/index.js:33:21) at /home/phenomlab/nodebb/src/routes/helpers.js:34:11 at Layer.handle [as handle_request] (/home/phenomlab/nodebb/node_modules/express/lib/router/layer.js:95:5) at next (/home/phenomlab/nodebb/node_modules/express/lib/router/route.js:137:13) at pluginHooks (/home/phenomlab/nodebb/src/middleware/index.js:100:3) at runMicrotasks (<anonymous>) at processTicksAndRejections (internal/process/task_queues.js:93:5) at async /home/phenomlab/nodebb/src/middleware/helpers.js:9:5
-
Ahh looks like the latest version of this plugin requires nodebb 1.17.0. Use 1.0.1 if you are on nodebb 1.16.2.
-
@baris Thanks very much.
-
@baris I've noticed that there doesn't seem to be way to add anything in terms of widget to the content section (it's not shown). On other "pages", I can add a header, content, etc. Is this expected ?
-
You should be able to add widgets on the extend/widgets page
-
@baris Correct, but there isn't one for "content". I expect that's normal, but wanted to check ?
-
Yeah, that's normal.
-
@baris just to keep everything coherent, can we get the "all users" option translatable?
-
Added i18n https://github.com/NodeBB/nodebb-plugin-feed/commit/6f8b040d5666e2a4153378414621664e8882d75c
Please send pull requests for adding different languages.
-
Hi @baris , do you think doubling the length of summary post size is possible?
I guess right now max line count is 11? can it be 20?
-
I think the height is controlled by css so you can change that in custom CSS tab.
-
previously I wrote here: https://community.nodebb.org/post/87648
this custom CSS (what baris mentioned above) is related to the Feed plugin as well...
.posts-list .posts-list-item .content { overflow: auto; max-height: 480px; }
with this change, people can go through all the posts by scrolling on the same page... feel free to change the post height...