Thanks for the kind words 😃
Yes -- with the custom pages plugin, you can create your home page... and then under "General -> Home Page" you can set your home page to that page (or a custom route, probably)
@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...