Skip to content

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

Uncategorized
Posts 94 Posters 64 Views 2.6k


60/94

23 Jan 2025, 11:31


Threaded Replies

Related Topics
  • Spam spam spam

    Solved Configure nodebb 24 Dec 2024, 10:49
    2 Votes
    6 Posts
    211 Views
    @Panda said in Spam spam spam: ok, yes Ive seen the queue, it shows IP, but doesnt have a field for comments from registrant. It’s not designed for that. It merely serves as a gateway between posts appearing on your form or not. @Panda said in Spam spam spam: It would be better if nodebb had this plugin included in ACP list, as not only then do you know its approved and should work, but many people cant or dont want to use CLI on the server That’s a question for the NodeBB devs but in all honesty you can’t not use the CLI when installing nodebb so to be this isn’t a big deal.
  • 2 Votes
    3 Posts
    242 Views
    @phenomlab thank you very much for the assistance Mark, massively appreciated as always. The great thing about this is it’s all documented for other NodeBB users that come looking for solutions . Looks far better .
  • 2 Votes
    3 Posts
    285 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.
  • 4 Votes
    25 Posts
    2k Views
    @Panda said in Fixed background to nodebb forum: Chatgpt told me the ::before method. Go figure
  • 0 Votes
    9 Posts
    791 Views
    OK, I think I have figured out how to place a link in the footer which will click to a new page.
  • 4 Votes
    11 Posts
    824 Views
    @crazycells you are right thank you.
  • 1 Votes
    2 Posts
    795 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
    7 Posts
    667 Views
    @DownPW great! thanks a lot… this code solves my problem.