Skip to content
  • nodebb-plugin-markdown shows undefined value

    NodeBB Plugins
    2
    0 Votes
    2 Posts
    259 Views
    PitaJP
    Master branch is not stable and not meant for production use. We recommend using the latest versioned branch. How exactly did you upgrade? You say you "merged with master". Did you run ./nodebb upgrade? Merging is not the recommended upgrade path in the first place. Why did you do it that way?
  • uploading images with the nodebb-plugin-write-api

    NodeBB Plugins
    9
    0 Votes
    9 Posts
    659 Views
    phenomlabP
    @lostspace just so you know you're not blasting posts into a black hole that nobody ever sees.... Thanks for the information you've provided. The API can be difficult to understand and work with, and the examples you've posted will undoubtedly help others in the same journey.
  • Which version of this plug-in is compatible with?

    NodeBB Plugins
    4
    0 Votes
    4 Posts
    359 Views
    julianJ
    My mistake, thank you
  • 16 Votes
    52 Posts
    26k Views
    yariplusY
    Version 0.10.0 Scuff update for nodebb 2.x A bit late, but better than never.
  • Hey dude, excuse me what is this from the plugin?

    NodeBB Plugins
    5
    0 Votes
    5 Posts
    480 Views
    barisB
    You need to put the popular tags widget on the categories sidebar and use the custom css/js from the other thread.
  • Activity Stream plugin?

    NodeBB Plugins
    8
    0 Votes
    8 Posts
    1k Views
    crazycellsC
    @julian said in Activity Stream plugin?: @crazycells said in Activity Stream plugin?: you search 'nothing' in posts and sorted by post time in descending order, you see the list.. That's quite a clever solution lol, actually I was thinking out loud just to see what it will show... sometimes, this helps to get inspiration. But in this case, I do not think our forum can get benefit from such a plugin, I believe @razibal has a very active and diverse forum, in such a case, this page might be beneficial. We have these alternatives with a similar purpose: /best-posts /feed /recent By the way, @julian does registered users have an explicit group/group page? Because groups also show the posts by group members. Maybe @razibal can consider this.
  • Error installing custom pages

    NodeBB Plugins
    13
    0 Votes
    13 Posts
    828 Views
    eeeeeE
    Thanks again, all working
  • inline video player

    NodeBB Plugins
    4
    0 Votes
    4 Posts
    392 Views
    phenomlabP
    @eveh Yes, but the json file probably isn't up to date. A while ago, a change was required for 2.x branch which added a compliant flag. Looks like that was never done, but it works nonetheless.
  • Session-sharing - get local uid by appId

    NodeBB Plugins
    2
    0 Votes
    2 Posts
    240 Views
    julianJ
    It can be, although that'd be something I'd have to do later on. You can file a feature request here and I will get to it in time, but you can also contact us at [email protected] if you want to sponsor this work
  • sso-google plugin: redirect_uri_mismatch

    NodeBB Plugins
    10
    0 Votes
    10 Posts
    627 Views
    A
    YES! I got it working The problem was NodeBB 2FA was redirecting the user and that caused the error.
  • Error uploading to Imgur

    NodeBB Plugins
    3
    0 Votes
    3 Posts
    368 Views
    cagatayC
    @torn2 this is not about nodebb , pls check it; https://github.com/hackmdio/codimd/issues/234
  • Broadcast message plugin

    NodeBB Plugins
    1
    0 Votes
    1 Posts
    278 Views
    A
    Hi, Is there a plugin to broadcast a message to many users?
  • example/best practice for managing a list of strings

    NodeBB Plugins
    7
    0 Votes
    7 Posts
    645 Views
    oplik0O
    @sdetweil There is documentation on how templates work in the benchpress repository - that is the templating engine NodeBB uses: https://github.com/benchpressjs/benchpressjs/tree/master/docs There is a link to the engine in getting started development docs (https://docs.nodebb.org/development/) but I admit that it's not intuitive. The documentation for working with included helpers and client-side modules is basically nonexistent though, I mostly just look at other plugins (quickstart is a good reference for common use cases) and ultimately just look at the code. For the included setting types you can see it here: https://github.com/NodeBB/NodeBB/tree/master/public/src/modules/settings
  • [nodebb-plugin-debug-hook] Hook debug plugin

    NodeBB Plugins
    1
    3 Votes
    1 Posts
    314 Views
    barisB
    https://github.com/NodeBB/nodebb-plugin-debug-hook Sometimes you need to see the result of some filter/action on a live/prod instance and it is not easy to add a console.log and restart. This plugin allows you to select a plugin hook and see the resulting data after all plugins are done executing their hooks. Here is a sample from running it against filter:search.query [image: 1662508605035-d0347032-02ff-4dcc-83a8-8bc039b4b297-image.png] The output is updated automatically every time you trigger the hook.
  • filter new messages based on content, links

    NodeBB Plugins
    7
    0 Votes
    7 Posts
    517 Views
    S
    @phenomlab thanks.. I have the plugin working.. turn on moderation, set limit for reputation and number of posts. this will catch all those posts now, given a list of typical first user links our site, github, ... bypass moderation.. if no links or no links outside the list. otherwise into moderation as the default. now to build the admin for managing the list of 'good' urls now to learn ANOTHER language.. tpl.. ugh
  • Upload API

    NodeBB Plugins
    1
    0 Votes
    1 Posts
    236 Views
    A
    Hi, How can i see the /api/post/upload interface? Thanks
  • Tenor GIF

    NodeBB Plugins
    30
    0 Votes
    30 Posts
    4k Views
    crazycellsC
    [image: madagascar-alex.gif]
  • WordPress SSO Plugin: Cannot save settings?

    NodeBB Plugins
    2
    0 Votes
    2 Posts
    293 Views
    julianJ
    @CherryDT Nope, it is fixed now v2.2.2 https://github.com/julianlam/nodebb-plugin-sso-wordpress/issues/12
  • Debugging in V2

    NodeBB Plugins
    1
    0 Votes
    1 Posts
    233 Views
    E
    Hello Nodebb community, I am upgrading to V2 and one of the very first issues I am facing now is debugging of webpacked project. Is there an instruction for noob like me on how to set up my dev environment in more organized manner either in VS Code or Chrome devTools? I used to add my plugin folders as a workspace in Chrome devTools and automatic binding would allow me to debug the source files: [image: 1660575682703-old.png] Sadly I am unable to do the same in V2 due to webpack source mapping not playing nice with Chrome. All I have came up with so far is enabling source-mapping by adding the following to webpack.xxx.js: devtool: 'source-map' This allows me to open inspection view of the source-mapped Nodebb project in Chrome devTools and view the scripts-client.js for debugging. [image: 1660574240252-new.png] It is not as intuitive and simple as before so I am seeking you assistance. Thank you all in advance for your guidance.
  • Ignore user

    NodeBB Plugins
    5
    0 Votes
    5 Posts
    563 Views
    T
    @crazycells said in Ignore user: @torn2 said in Ignore user: Installed that one but now forum loads very slow or get 503. Doesn't really have a compatibility version. that is possible, unfortunately, we are still behind at 1.19.X and it is working fine. But, there might be problems with the NodeBB v2... Please do not hesitate to open an issue on GH. Yea, it does not work with my version at all. Opened a ticket for review. Forum is crashed.