Skip to content

General Discussion

A place to talk about whatever you want

3.9k Topics 23.7k Posts
  • Chat window in harmony

    Solved
    5
    0 Votes
    5 Posts
    347 Views
    Sebastián CisnerosS
    @baris Thanks. I already tested it, and this is what I was looking for.
  • Build source code

    1
    0 Votes
    1 Posts
    59 Views
    Be TruongB
    When i using command ./nodebb build, setup, log,... always build and get issue same port. How can I fix this?
  • I can't figure out how to start using plugins

    7
    0 Votes
    7 Posts
    154 Views
    barisB
    You can find upload settings at /admin/settings/uploads#posts
  • How to make such a feature?

    2
    0 Votes
    2 Posts
    101 Views
    barisB
    These show up on their own if people directly reply to posts. It shows the contents of the reply.
  • How to make the spoiler button appear at level zero without stripes?

    2
    0 Votes
    2 Posts
    77 Views
    barisB
    You would have to use some custom css, something like below should work. [component="post/content"] { > blockquote { > blockquote { > *:not(.blockquote) { display: block!important; } .toggle { display: none!important; } } } }
  • Only see the certain categories in composer dropdown

    4
    0 Votes
    4 Posts
    117 Views
    traarrrT
    Damn, I see... amazed on how intricately this is designed
  • How can i get Topics list from a category and pagination?

    5
    0 Votes
    5 Posts
    136 Views
    D
    @baris how can i set limit on per page via API? i don't see on document
  • Dynamodeb compatibility

    1
    0 Votes
    1 Posts
    72 Views
    bh4 techB
    Has anyone managed to run NodeBB using Dynamodb? If yes, please provide the nedessary docs.
  • NodeBB on Android / PWA

    19
    0 Votes
    19 Posts
    543 Views
    S
    @y-batvinik Could you find out more?
  • Who help me creating plugin

    4
    0 Votes
    4 Posts
    100 Views
    phenomlabP
    @Ahmadxon I'm referring to the misspelling of library.js in the Git link you posted. Unless you correct this, the plugin will not load. This is the starting point.
  • Help me

    3
    0 Votes
    3 Posts
    115 Views
    crazycellsC
    @Ahmadxon said in Help me: I came across so many time error to install telegram-notification and sendGrid properly. I want to integrate to telegram bot and notification but the telegram-notification-plugin does not appear on the NodeBB forum. how can i solve the problem to appear and work correctly these plugins Please make sure they are compatible with the NodeBB version you use. Unfortunately, many of the plugins are not maintained by the core team, so they might not be compatible with the current version of NodeBB.
  • How to delete file using api

    4
    0 Votes
    4 Posts
    138 Views
    J
    @Nghĩa-Nguyễn said in How to delete file using api: var http = new XMLHttpRequest(); var url = window.location.origin + '/api/v3/files'; http.open('DELETE', url, true); //Send the proper header information along with the request http.setRequestHeader('Content-type', 'application/x-www-form-urlencoded'); http.onreadystatechange = function() {//Call a function when the state changes. if(http.readyState == 4 && http.status == 200) { alert(http.responseText); } } http.send({ path: f }); A nice version, which also automatically include the CSRF Token (@baris why didn't you mention it?): const [api] = await app.require(['api']); api.del('/api/v3/files', { path: "XXX" })
  • Help again

    1
    0 Votes
    1 Posts
    57 Views
    AhmadxonA
    who help me to set confirmation email code on the nodebb
  • Help!!!!

    12
    0 Votes
    12 Posts
    212 Views
    AhmadxonA
    Sorry I don't get it please show me step by step to create home page like catergories page please help me
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    19 Views
  • How to bookmark a topic?

    3
    0 Votes
    3 Posts
    92 Views
    macfanM
    @phenomlab Thank you very much.
  • Top Posters add on the homepage

    4
    0 Votes
    4 Posts
    109 Views
    phenomlabP
    @baris That would be great. Thanks for this
  • open by default Navigation section.

    6
    0 Votes
    6 Posts
    219 Views
    barisB
    That setting was added in one of the later releases, you would need to upgrade to get it.
  • Add thumbnail image in topic list

    6
    0 Votes
    6 Posts
    196 Views
    vijay kumavatV
    @phenomlab , Thank you for sharing , But when i am sharing this link on twitter or other social platform its not showing thumbnail as a Open graph image.
  • Error with Custom Headers

    5
    0 Votes
    5 Posts
    279 Views
    yasasY
    Hi @baris Sorry about the delay. Had to confirm again. Yeah this header was present throughout the site surprisingly. Have to check if it's the same once upgraded.