Skip to content

Feature Requests

You have a cool idea about NodeBB? Post it here.

808 Topics 5.0k Posts
  • Support PM2 for the "Restart NodeBB" button

    7
    0 Votes
    7 Posts
    3k Views
    PitaJP

    @julian said:

    If you're using pm2 loader.js, you should use the restart button in the ACP to restart NodeBB... 😄

    I was dag nabbit.

    (... or ideally, don't use PM2 at all, since the loader supercedes it. Just: ./nodebb start)

    But I like to use pm2 because I use it for all of my other task management needs. Where in the code would it be?

  • View/Modify Group Membership For Specific User

    8
    0 Votes
    8 Posts
    3k Views
    S

    By "dynamic" I mean any environment where these kinds of privileges may be changing frequently. It's not just about moderation, it's about their roles in general (reading and posting privileges). And I understand what an administrator is, but that's not a clean separation. Admin and moderator are roles (not specific, granular privileges) and in one case represented as a group and in another represented as a privilege.

    It's not that NodeBB doesn't suit my use case. After finding the moderator option, I can pretty much do what I want to do. It's about the spaghetti process it took to get there. I'd just like to see this be simplified and presented in a more coherent manner.

  • 0 Votes
    4 Posts
    2k Views
    julianJ

    @pitaj said:

    I just don't want to flood other categories with questions. It also doesn't seem like there are many NodeBB users on StackOverflow right now.

    Oh hey @baris... XD

  • Search user by ip address?

    2
    0 Votes
    2 Posts
    3k Views
    S

    If it isn't by default, it probably is if you make a plugin 😉

  • 0 Votes
    2 Posts
    2k Views
    A

    @Baerrus said:

    The is a key moderator functionality to relocate content that users post into a wrong category

    Thread Tools > Move Topic

  • 0 Votes
    9 Posts
    4k Views
    S

    Some kind of paging function would also be good for mobile devices where RAM is frequently at a high premium.

    NodeBB causes not-infrequent browser crashes on my iPad2 on longer threads. When I click a link that takes me to the 60th post in a thread or something, there is a long delay as the slower browser begins by loading the op oldest posts in batches. It would be good if there were a way to make it skip doing that and take me directly to the unread posts (without switching the full application to paged mode).

    Perhaps on mobile devices you could add a secondary navigation bar with the paging functions (arrows, "displaying X-Y of Z", etc).

  • [REQUEST] NodeBB Group Leaders

    3
    5 Votes
    3 Posts
    2k Views
    T

    I'd also love to see this as an option for larger communities that require it.

  • Add location in body class.

    3
    0 Votes
    3 Posts
    1k Views
    esiaoE

    @julian True, but what I need to alter is the container and since topic is a child it's not possible with pure css.

  • 0 Votes
    3 Posts
    2k Views
    julianJ

    All good points, tagging @baris to take a look

  • IP.Board Converter

    17
    0 Votes
    17 Posts
    15k Views
    B

    @jpg

    we have exporters for both.

    IP.Board
    https://github.com/akhoury/nodebb-plugin-import-ipboard

    VBulletin
    https://github.com/akhoury/nodebb-plugin-import-vbulletin

    you don't really need to install any of these 2, just install

    Link Preview Image GitHub - akhoury/nodebb-plugin-import: migrate your old crappy forum to NodeBB

    migrate your old crappy forum to NodeBB. Contribute to akhoury/nodebb-plugin-import development by creating an account on GitHub.

    favicon

    GitHub (github.com)

    and use the interface the select the right exporter.

    Note: hold off a little bit on the source forum with 2M+ posts, I am still in the process of resolving some memory issues

  • allow sub categories

    4
    1 Votes
    4 Posts
    2k Views
    ?

    @julian, I'll upvote every comment with this same content, no matter how many times I see it.

  • Link preview in posts

    19
    0 Votes
    19 Posts
    7k Views
    S

    People are lazy, anything you can make that will simplify their lives is winner. This one feature certainly helped Social networks grow over traditionnal forums. Look kids, you can post stuff but you don't have to type anything, how cool is that? 😜

  • Clickable emoji button on composer

    3
    0 Votes
    3 Posts
    2k Views
    N

    yup,its not convenient as a chinese

  • Filters based on tags.

    2
    1 Votes
    2 Posts
    2k Views
    P

    Just for cross-reference: https://github.com/NodeBB/NodeBB/issues/2060

    I think I agree with the idea and that it would be useful although I don't see ourselves prioritizing this feature for the next major version at least.

  • Support for Sass based themes

    4
    1 Votes
    4 Posts
    3k Views
    sdnycoS

    I don't mean to revive old topics, but are there any news concerning SASS support? 🙂

  • Custom Homepage

    4
    0 Votes
    4 Posts
    2k Views
    A

    This would just involve a change in masonry to something else. Maybe mixitip.

    https://mixitup.kunkalabs.com

  • ip2location

    3
    1 Votes
    3 Posts
    905 Views
    A

    @luke Not sure how you'd apply this as a plugin. If I knew that, I'll throw it together. 😛

  • Username History and Mentions Updates

    7
    0 Votes
    7 Posts
    2k Views
    ?

    @psychobunny said:

    TBH I've been an admin/mod in several forums over my life and I always hated the idea of changing usernames in the first place

    ^^ This, usually. It's worse when they start using a new set of graphics to go with their "new persona". To be fair however, I can also remember picking a really stupid username and being glad I could change it. shudders

  • any plan for sub-category OR tags

    4
    0 Votes
    4 Posts
    2k Views
    ?

    Subcategories are presently only supported by the vanilla theme, and even then it's all on the backend of things. The Child categories don't acutally show inside of the parent categories...yet.

    This should be a simple tweak though, as @a_5mith mentioned to me the other day.

  • Slideable Code Tag on Mobile

    2
    0 Votes
    2 Posts
    2k Views
    T

    Hmm, theres a few ways you could solve this issue. One way I solved this was to change code { white-space: nowrap; } to
    code { white-space: pre-wrap; } which is the more quicker way.

    Other ways, I can think of off the top of my head is adding an overflow-x: auto to .post-content.