Skip to content

NodeBB v4.0.0

General
28 4 2.1k 1
  • Yes, I can see these while on your site, and I created the topic from your site in the World category. However, I should also be able to see the links on my own site or the NodeBB site, but I can’t, even though I am following you.

  • Yes, I can see these while on your site, and I created the topic from your site in the World category. However, I should also be able to see the links on my own site or the NodeBB site, but I can’t, even though I am following you.

    @cagatay Yes, exactly that.

  • Since we are following each other, we can see the messages we post in Julian’s topic as cagatay@community.nodebb.org. However, we cannot see messages from others because we are not following them on their own sites, or maybe we need to follow them on nodebb.org—I’m not sure. After all, we are unable to create topics ourselves, right?

  • @phenomlab pleased (and a little surprised) to see you embracing Federation.
    You didn’t seem to be a fan last time we discussed it, what has given you the change of heart? 🙂

  • @phenomlab pleased (and a little surprised) to see you embracing Federation.
    You didn’t seem to be a fan last time we discussed it, what has given you the change of heart? 🙂

    @Panda I’m not embracing it as such - more along the lines of early testing to see if there is any benefit to the Sudonix community as a whole.

  • I hope you stay on board with the ActivityPub because there is stuff that need fixing / improving. As I said some months ago, your input on some of those issues will be value.
    Its a very complex area.

  • Personally, I don’t really like this feature in principle.

    Besides, I don’t know how it works and I don’t feel like it was presented well.

    Then, I would like to keep control of what is shared elsewhere than on my site.

  • Personally, I don’t really like this feature in principle.

    Besides, I don’t know how it works and I don’t feel like it was presented well.

    Then, I would like to keep control of what is shared elsewhere than on my site.

    @DownPW agreed. I too am approaching this with trepidation rather than simply throwing myself into it. I understand the appeal and potential for a wider audience, but given the remit of this site and the mission that Sudonix effectively promotes, I’m not sure it’s a good fit.

  • @DownPW In principle I like the feature.
    However you maybe right that it hasn’t been presented well, which matters since the workings of World aren’t intuitive
    Its not easy to get World populating when a forum is new to it. Further more World doesnt populate for new users either, even if the forum has connections.

    If forums started out with a set of connections, and new users also started off with a default set of those connections, it might help having something in there!.

  • @DownPW In principle I like the feature.
    However you maybe right that it hasn’t been presented well, which matters since the workings of World aren’t intuitive
    Its not easy to get World populating when a forum is new to it. Further more World doesnt populate for new users either, even if the forum has connections.

    If forums started out with a set of connections, and new users also started off with a default set of those connections, it might help having something in there!.

    @Panda said in NodeBB v4.0.0:

    the workings of World aren’t intuitive
    Its not easy to get World populating when a forum is new to it

    This is a good point and one I’ve considered also. It’s a little confusing to be honest.


Related Topics
  • TNG + Nodebb

    General tng genealogy nodebb plugin
    4
    0 Votes
    4 Posts
    662 Views
    @Madchatthew said in TNG + Nodebb: you have to try and use duck tape and super glue to change something to make it do what you want it to do I couldn’t have put that better myself.
  • 4 Votes
    7 Posts
    1k Views
    @phenomlab oh no, that is 1 cent on the video, but you are right, symbols are similar… I just converted it to $1 , since it is more intuitive in daily life…
  • Modify the tagging behavior in NodeBB

    Locked General tagging harmony
    11
    3 Votes
    11 Posts
    2k Views
    For anyone else following this thread https://community.nodebb.org/topic/17402/change-in-reply-to-xxxx-text And https://github.com/NodeBB/NodeBB/commit/f2152953cddd3247746ef393516b0a53ba7750a4
  • Want to use Sudonix themes ?

    Chitchat themes nodebb
    80
    1
    34 Votes
    80 Posts
    9k Views
    omg thank you Mark.
  • Issues with 2nd NodeBB installation

    Solved General
    22
    3 Votes
    22 Posts
    3k Views
    @cagatay yes, that will be fine. Just watch for potential caching conflicts as you will have two sites writing to the one instance of iframely.
  • Title on homepage of nodebb forum

    Solved Customisation nodebb
    2
    1 Votes
    2 Posts
    1k Views
    @eveh Welcome board The code you are referring to is custom written as no such functionality exists under NodeBB. However, adding the functionality is relatively trivial. Below are the required steps Navigate to /admin/appearance/customise#custom-header Add the below code to your header, and save once completed <ol id="mainbanner" class="breadcrumb"><li id="addtext">Your Title Goes Here</li></ol> Navigate to /admin/appearance/customise#custom-js and add the below code, then save $(document).ready(function() { $(window).on('action:ajaxify.end', function(data) { // Initialise mainbanner ID, but hide it from view $('#mainbanner').hide(); var pathname = window.location.pathname; if (pathname === "/") { $("#addtext").text("Your Title"); $('#mainbanner').show(); } else {} // If we want to add a title to a sub page, uncomment the below and adjust accordingly //if (pathname === "/yourpath") { //$("#addtext").text("Your Title"); //$('#mainbanner').show(); //} }); }); Navigate to /admin/appearance/customise#custom-css and add the below CSS block .breadcrumb { right: 0; margin-right: auto; text-align: center; background: #0086c4; color: #ffffff; width: 100vw; position: relative; margin-left: -50vw; left: 50%; top: 50px; position: fixed; z-index: 1020; } Note, that you will need to adjust your CSS code to suit your own site / requirements.
  • Discord Login - OAuth2 - NodeBB

    Solved General discord nodebb plugins
    32
    11 Votes
    32 Posts
    6k Views
    @Galaxian hi, and welcome to Sudonix Can you check your config.json file and ensure that your forum URL doesn’t have a trailing backslash or forward slash in it ? This was the issue @Sampo2910 had.
  • [NodeBB] username cards

    Solved Customisation nodebb
    8
    5 Votes
    8 Posts
    2k Views
    @phenomlab Aha…nice to know. As always thank you for the reply and information.