Skip to content

General Discussion

A place to talk about whatever you want

3.9k Topics 23.9k Posts
  • How to archive posts?

    2
    0 Votes
    2 Posts
    414 Views
    PitaJP
    You can lock topics from the topic tools menu Moderators can access the flagged content page at /flags
  • Replacing email field with something else

    5
    0 Votes
    5 Posts
    641 Views
    CristagolemC
    @julian Basically I replaced the whole validateEmail() function to be only function validateEmail(email, callback) { callback = callback || function () {}; var email_notify = $('#email-notify'); socket.emit('user.emailExists', { email: email, }, function (err, exists) { showSuccess(email_notify, successIcon); callback(); }); } and I am getting "invalid email" error after accepting forum terms, of course I am not inserting an email but in this case a minecraft username
  • Happy St Patrick's day!

    3
    2 Votes
    3 Posts
    661 Views
    gotwfG
    @julian Heh, nor I. Just wasn't feelin' it. Enjoy good craft brews but not into getting plastered for the sake of getting plastered. Wife and her sis put away some Guinness though. But then they're also half Irish so it was pretty much obligatory.
  • Unable to edit the post privilages issues

    2
    1 Votes
    2 Posts
    291 Views
    dunlixD
    @venkat Gotta be more specific with your problem. Someone may be able to help from this forum. Try opening an issue on github, but you'll have to describe your problem.
  • Multiple Community?

    Unsolved
    5
    0 Votes
    5 Posts
    628 Views
    <baris>B
    I think the easiest way to achieve this is to create your user register/login system outside of nodebb and use session sharing plugin on each of the communities. When users login on your system they will be logged in on all the nodebbs.
  • Difference between child theme and direct editing?

    7
    0 Votes
    7 Posts
    842 Views
    dunlixD
    @pitaj oh ok
  • After installing on Ubuntu, only seeing the "welcome to nginx" page

    15
    0 Votes
    15 Posts
    2k Views
    dunlixD
    @nubi-kr same
  • How do you change HTML on pages?

    Unsolved
    12
    0 Votes
    12 Posts
    1k Views
    dunlixD
    @pitaj I've tried what you have said. No errors in host machine while listening on ./nodebb log the only errors are in the Dev Tools Console Tab, so the request isn't ever even sent to the server (to my small amount of knowledge).
  • Finally done with translation

    1
    +0
    4 Votes
    1 Posts
    285 Views
    Nubi KRN
    [image: 1615774325849-1.jpg] It took me two days to translate the whole thing. There were some translations before, but lots of awkward translations, so I had to translate all again. Most of the translations were not difficult, but the difficult part for me was the server-related settings. I'm lacking server related knowledge, so I had to learn about them to translate. XD For the advanced settings, I can't say that they are perfect because I haven't used NodeBB for a long time, but I can confidently say that they are perfect for the functions I used myself. It was a good experience to localize NodeBB. I will continue to improve translation.
  • Different icons on NodeBB?

    Unsolved
    3
    0 Votes
    3 Posts
    529 Views
    dunlixD
    @baris Maybe it was just a bug or you/one of the devs fixed it. Anyways, do you have any info on my question? or anyone else do you have any answers?
  • post alignment issues since 1.16.2

    3
    +3
    0 Votes
    3 Posts
    551 Views
    D
    @pitaj The only thing in the custom css is: .categories li div .title a{ color: black; }
  • A link that will be liked

    1
    1 Votes
    1 Posts
    229 Views
    ר
    Is it possible to create a link that, when clicked, will open the post and be liked immediately?
  • Is it rare to witness forum maintenence?

    3
    0 Votes
    3 Posts
    958 Views
    <baris>B
    Not rare at all if you are actively using this forum. I regularly push latest master to this forum for testing.
  • New here :3

    3
    0 Votes
    3 Posts
    579 Views
    Nubi KRN
    @pitaj Nooo... but it's ok New translation will not be difficult because I have experience translating English and Japanese into Korean. However, there are translations that use different words with the same meaning or words that are not currently used well, so it will take some time to fix that part. I'll do untranslated part first and fix them later.
  • How do you change loading circle color on top right?

    Solved
    5
    +0
    1 Votes
    5 Posts
    538 Views
    dunlixD
    @baris I got the color to change. I see i can also modify othre things. thanks!
  • © date?

    3
    1 Votes
    3 Posts
    374 Views
    dunlixD
    @julian yeahhh............
  • How to upload video from pc?

    2
    0 Votes
    2 Posts
    370 Views
    julianJ
    @amtar You can enable regular file uploads, but this would not show the uploaded file in an embedded media player. Out of the box we do not automatically embed video files.
  • How would one add an option/button to the user dropdown menu?

    Solved
    6
    +0
    0 Votes
    6 Posts
    2k Views
    dunlixD
    @dogs It works great without ajaxify.end. Thanks
  • ./nodebb start telling me nodebb is already running, it's not!

    5
    0 Votes
    5 Posts
    2k Views
    dunlixD
    @sp4rkr4t all i did was run sudo ./nodebb start but now i realize how old this topic is
  • Section name not being included in breadcrumb

    Solved
    33
    0 Votes
    33 Posts
    5k Views
    I
    @pitaj Sure, why not:) In the path /to_your_nodebb_path/node_modules/nodebb-theme-persona/library.js (or whatever file and path you want to add), after the first line which is 'use strict';, add these lines below the first line: const helpers = require.main.require('./src/controllers/helpers'); const categories = require.main.require('./src/categories'); const meta = require.main.require('./src/meta'); const relative_path = require.main.require('nconf').get('relative_path'); helpers.buildCategoryBreadcrumbs = async function (cid) { const breadcrumbs = []; while (parseInt(cid, 10)) { /* eslint-disable no-await-in-loop */ const data = await categories.getCategoryFields(cid, ['name', 'slug', 'parentCid', 'disabled', 'isSection']); if (!data.disabled) { breadcrumbs.unshift({ text: String(data.name), url: `${relative_path}/category/${data.slug}`, cid: cid, }); } cid = data.parentCid; } if (meta.config.homePageRoute && meta.config.homePageRoute !== 'categories') { breadcrumbs.unshift({ text: '[[global:header.categories]]', url: `${relative_path}/categories`, }); } breadcrumbs.unshift({ text: '[[global:home]]', url: `${relative_path}/`, }); return breadcrumbs; }; Then comment out line starting with var meta by adding two //: //var meta = require.main.require('./src/meta'); Then you can restart by either of these ways: /nodebb_path/nodebb restart service nodebb restart systemctl restart nodebb Regarding custom plugin, I'll consider it soon.