Skip to content

Feature Requests

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

808 Topics 5.0k Posts
  • 0 Votes
    2 Posts
    1k Views
    PitaJP

    I've provided some custom CSS for this before:

    Link Preview Image Is it possible to cut the panel vertically?

    If you put the following CSS in a userstyle with a plugin like Stylish then the composer will display half and half beside the page content. @media (min-widt...

    favicon

    NodeBB Community (community.nodebb.org)

  • Request Topic Management

    3
    0 Votes
    3 Posts
    1k Views
    W

    @pichalite Lock, Move, Delete, and others as well

  • Using NodeBB for Project Management

    27
    2 Votes
    27 Posts
    10k Views
    T

    Place a link to a moo.do outline in the original post. Presto, integration without really integrating the code. Even this half baked setup is superior to all dedicated pm solutions that I have tried. For me, efficiency is the primary factor when evaluating software. How quickly we can download the data we need and upload our input. Number of clicks is a useful metric.

    Having every resource available on the home page is a highly efficient design for a workflow tool. I view nodebb as the best version of this concept.

    Its easy to recommend the popular product. Actually testing all of them to isolate value is challenging. Try not to anchor yourself until you've done the research.

  • Topic Alerts

    3
    0 Votes
    3 Posts
    1k Views
    D

    @pichalite said in Topic Alerts:

    @dangeruss you can create a plugin to achieve that functionality.

    Thanks, can you give me some pointers? Like which functions I would call and what hooks I should implement?

  • Crossposting

    1
    0 Votes
    1 Posts
    782 Views
    D

    Our community would like the ability to be able to put a thread into multiple categories. (This might need to be moderator and above privilege).

    I'm assuming this is not currently possible. Would it be possible to add this, whether in the core or as a plugin?

    I'm not quite sure what the current db schema looks like. I understand everything is just in a single collection. Would it be as simple as having some kind of interface which ads a linking between a thread and a category, or is it a huge lift?

  • Add limits on global moderators

    4
    0 Votes
    4 Posts
    2k Views
    N

    @pitaj said in Add limits on global moderators:

    Privileges refactor

    Will do and thanks for linking 🙂

  • Support for apple icons

    1
    0 Votes
    1 Posts
    796 Views
    D

    Can we add support for these icons as well as the standard ones we have now (like the favicon).

    This is a list of errors on my instance for the last I guess week or so? Not sure how to read the range on the error log page.

    Route Count
    /apple-touch-icon.png 538
    /apple-touch-icon-precomposed.png 211
    /apple-touch-icon-152x152-precomposed.png 154
    /apple-touch-icon-152x152.png 153
    /apple-touch-icon-120x120-precomposed.png 128
    /apple-touch-icon-120x120.png 128

  • Thread wiki area

    5
    0 Votes
    5 Posts
    1k Views
    D

    Not that we should emulate what 💽 🐴 does, but I heard they have this feature.

    If I was to build this plugin, do you guys know what I would need to do on the high level?

  • progressive web application for nodebb

    3
    0 Votes
    3 Posts
    2k Views
    meetdilipM

    @sanatisharif said in progressive web application for nodebb:

    we can have progressive web application in Nodebb

    There is already a thread on the same

    Link Preview Image NodeBB PWA

    Is there any chance of a PWA version availability for NodeBB ? Progressive Web Apps ( PWA ) are getting very popular these days for it's cross platform usabi...

    favicon

    NodeBB Community (community.nodebb.org)

  • Post Editor : Must Have Functionalities

    2
    1 Votes
    2 Posts
    1k Views
    barisB

    These are all possible already with markdown, do you mean they should be added to the editor toolbar in the composer?

  • 0 Votes
    1 Posts
    999 Views
    TsaukpaetraT

    We can do it if the window isn't too slim, and if I'm in Landscape mode it also lets me hit the red circle, so why not enable it for mobile?

  • Backup & restore database

    3
    0 Votes
    3 Posts
    2k Views
    barisB

    To add to Julian, we do support taking backups and downloading them on our managed hosting service since the installation is same on all instances.

  • 0 Votes
    5 Posts
    2k Views
    julianJ

    No, this is a functionality only available to administrators.

  • Remaking Chat of NodeBB

    2
    1 Votes
    2 Posts
    1k Views
    P

    as a temporary solution, you could just use email

  • Hide menuitems for loggedin users

    7
    0 Votes
    7 Posts
    2k Views
    JenklerJ

    Thanks @baris 👍

  • Option: Follow topics you reply to automatically

    21
    3 Votes
    21 Posts
    9k Views
    C

    good idea

  • Plugin activation depending on system

    3
    1 Votes
    3 Posts
    2k Views
    E

    @pitaj said in Plugin activation depending on system:

    hmmm... well ideally plugins and core would only load their assets when necessary. For instance, in core, we only load jQuery UI if we have some jQuery UI thing. There are many other places where we could pull more code out to be on-demand.

    you mean ideally but not on reality, right? 😄
    my idea was for example to enable plugins like...
    -people viewing this topic, reactions, polls, etc only on desktop

  • Recaptcha antispam before SSO

    2
    0 Votes
    2 Posts
    1k Views
    A

    seems like I need to clarify my question...

    The reason for the recaptcha/antispam question before SSO, is to avoid spammers using scripts to use SSO with a burner account (which I am seeing here on this forum). That is one way to avoid spam filters and creating more spam, which can annoy some forum users/admins.

    So in other words...
    click on Register -> click on SSO link -> Antispam question/recaptcha -> then click SSO login/agree button

  • Memory efficient archiving

    11
    0 Votes
    11 Posts
    3k Views
    julianJ

    The idea that Redis stores everything in-memory is the key to its speed. However, it's also a huge crutch in that yes... the less-often used data is still in-memory when it could rightly just be put in the hard drive and queued up when needed.

    That's why we suggested migrating to Mongo, because, well... it does just that 😄

  • sticky sidebar widgets

    7
    0 Votes
    7 Posts
    3k Views
    yariY

    @baris said in sticky sidebar widgets:

    $(window).on('action:ajaxify.end', function () {
    $('[data-spy="affix"]').affix({
    offset: {
    top: 400,
    bottom: function () {
    return (this.bottom = $('.footer').outerHeight(true))
    }
    }
    });
    });

    Thank you very much @baris. it worked

    🐥