Skip to content

General Discussion

A place to talk about whatever you want

3.9k Topics 23.9k Posts
  • Chat and Search Behaviour NodeBB 3.x

    11
    +0
    0 Votes
    11 Posts
    402 Views
    yasasY
    Update: I did a local build and tested using multiple browsers. Still the behaviour is the same as https://community.nodebb.org/post/98116
  • 0 Votes
    2 Posts
    243 Views
    barisB
    There is nothing built in but you could quickly build something with custom js, for example something like below would redirect user to their profile edit page if they haven't filled out their about me section. $(window).on('action:ajaxify.end', async () => { if (app.user.uid > 0 && !app.user.aboutme) { const alerts = await app.require('alerts'); ajaxify.go('/me/edit'); alerts.alert({ type: 'info', message: 'Please fill in your about me section', }); } });
  • Stack of nodebb

    4
    0 Votes
    4 Posts
    333 Views
    the skyfoxxT
    @Omar-Ahmed Unfortunately I am unable to. I just evaluate it myself for my own use-case, but I don't work at NodeBB. your best bet is to install it on one of these services, picking MongoDB as the database https://docs.nodebb.org/installing/cloud/
  • Posting threads and topics only visible by specific group

    3
    0 Votes
    3 Posts
    1k Views
    gasebuddyG
    New here, thought I 'd piggy bank this discussion, can a post be made directly in the group itself instead of posting from a categories, maybe I have a miss-configuration or something
  • What is the name of the show in my nodebb forum?

    Unsolved
    3
    +0
    0 Votes
    3 Posts
    313 Views
    barisB
    @Thmhe please email [email protected] with the email you signed up and we can help you. The instance name is the name you picked during creation.
  • 1 invalid item detected in Google Webmaster URL Inspection

    2
    +0
    0 Votes
    2 Posts
    218 Views
    B-738B
    All fixed in 3.6.X Upgrade to latest one
  • Add Recent Topics on single topic page

    3
    +0
    0 Votes
    3 Posts
    365 Views
    barisB
    Harmony doesn't have a widget area there so first thing would be to add that in. After that you can check the topic id to match the desired topic to render the widget. nodebb-widget-essentials has plenty of examples. For example the html widget can be displayed on specific categories or topics by using their ids. [image: 1707228332438-5d6eeca0-2e70-4a56-8290-7e3b7cbfdf66-image.png]
  • There's no easy way to post images from mobile?

    1
    1 Votes
    1 Posts
    165 Views
    Gliding9426G
    On PC I paste images in the textbox but on mobile, specifically on Android, you can't copy images in the clipboard, so how to post images? Must tell the users to host images in a 3rd party site like imgur and add it manually via markdown? Edit: sorry just found it, the upload button is the last button of the toolbar I was able to upload images by pressing that button
  • Display Specific group users in dropdown

    2
    +0
    0 Votes
    2 Posts
    185 Views
    barisB
    This is not something available out of the box, you would have to build it in a plugin to filter the topics based on uid.
  • Social Share of Topics / Posts

    9
    0 Votes
    9 Posts
    617 Views
    barisB
    @vijay-kumavat does it work on this forum? If it does it could be something to do with your theme/custom code. The share code adds click handlers on components like [component="share/linkedin"] make sure they are in the DOM and there are no JS errors. https://github.com/NodeBB/NodeBB/commit/ace171a6bf7219c221a1a01e6ada7751f277e2ec
  • ./nodebb build vs ./nodebb upgrade

    6
    0 Votes
    6 Posts
    455 Views
    yasasY
    @baris Heyy yes sorryy. Absolutely yeah I don't know why it didn't occur to me to check the help. I was mostly looking at the documentation and stuff. @PitaJ Ah yes. Was mostly thinking about what steps specifically build and upgrade commands do. Thanks you two!
  • How to change subforum style?

    7
    +1
    0 Votes
    7 Posts
    682 Views
    barisB
    That's fine, I changed the template a little bit on latest harmony to remove the duplicated html but that will work too.
  • Change user running nodebb & other startup issues

    16
    0 Votes
    16 Posts
    3k Views
    Jakub UrbanowiczJ
    @FrankM your nodebb.service file worked and will do for the time being, thanks. @PitaJ Yes, moving to /var/www helped resolve my issues, cheers. @B-738 @josef I will try and learn Caddy and pm2 before I gain enough users to have to spawn more processes. The topic can be marked as resolved now.
  • "New Topic" Button

    5
    +0
    0 Votes
    5 Posts
    1k Views
    Adam CA
    Okay. Thanks!
  • how do I get a license?

    Unsolved
    10
    0 Votes
    10 Posts
    1k Views
    PitaJP
    I am not a lawyer, but every contribution requires signing the CLA, which allows NodeBB to relicense the code commercially: https://cla-assistant.io/NodeBB/NodeBB
  • 0 Votes
    5 Posts
    645 Views
    ernstkiE
    I'm starting to wonder if this is a reportable bug, since it appears to be the same script everyone else is running, and that referred to by the documentation.
  • error in admin

    18
    0 Votes
    18 Posts
    649 Views
    G
    @baris ok, I will try. Thanks a lot
  • Disable html entities in api

    8
    0 Votes
    8 Posts
    1k Views
    H
    @oplik0 I'll try this, thanks a lot.
  • [urgent] reconnecting-message is shown after stop & build & start

    3
    0 Votes
    3 Posts
    257 Views
    G
    #memo solved) cache, webpack maxEntrypointSize, maxAssetSize
  • plugin development, modify service-worker.js

    5
    1 Votes
    5 Posts
    474 Views
    K
    The plugin is now being tested in production. Chrome works as expected (push notifications should behave as forum notifications): Forum Icon is displayed in the notification Text containing the event that triggered the notification is displayed Clicking in the notification opens the browser at the specific path Firefox notifications only work on nightly versions.