Skip to content

NodeBB v4.0.0 — Federate good times, come on!

Uncategorized


7/94

20 Jan 2025, 20:16


Threaded Replies

Related Topics
  • 6 Votes
    11 Posts
    482 Views
    Thank you Mark, the changes look fantastic!!
  • 2 Votes
    3 Posts
    263 Views
    @JAC wow. Thanks for the great comments. They are truly appreciated. I tend to agree with the social media comments you’ve made. This is made all the more prominent in relation to recent events in Southport for example, and toxicity is a huge issue. Just look at some of the comments from trolls - they are truly disgusting, and the perpetrators seem to take great delight in the anonymity the Internet affords them. forums in general are much more subject focused, easier to moderate and users are less likely to be banned because they are there for a specific interest or reason, not to cause trouble. Agreed, although discussions can still get out of hand and quite often, these are left to run riot and quickly spiral out of control. A great example of that is here https://sudonix.org/topic/141/how-to-destroy-a-community-before-it-s-even-built there’s something much more calming about coming to a specific page at your fancy, posting and taking part in healthy debates over the real mishmash of social media. Yes, I personally prefer the atmosphere of a forum against the backdrop of unwanted noise via social media.
  • 5 Votes
    16 Posts
    1k Views
    @DownPW Yes, it is. It’s set far too low meaning other elements with a higher preference will sit over the top of it.
  • NodeBB upgrade now cant post

    Solved Bugs nodebb 28 May 2023, 10:03
    2 Votes
    5 Posts
    493 Views
    @Panda yes, for some reason, that is the case. If you need an urgent response, it’s probably better to post here because of the time difference.
  • 0 Votes
    5 Posts
    378 Views
    @mventures Yes, exactly. The other icon will restart NodeBB whilst the first icon I referenced will rebuild (recompile) it. The huge strength of NodeBB over Flarum (for example) is that the code is precompiled, and called once at boot. PHP’s code has to repeatedly reload code from source making it much slower.
  • 0 Votes
    6 Posts
    749 Views
    @cagatay You should ask in the NodeBB forums. Perhaps reference this post https://discuss.flarum.org/d/23066-who-read
  • 1 Votes
    2 Posts
    764 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.
  • 6 Votes
    9 Posts
    825 Views
    I have just figured it out… it can be targeted with text-decoration-color: I was mistakenly using color