Skip to content

NodeBB: Consent page

Solved Configure

Did this solution help you?
Did you find the suggested solution useful? Why not buy me a coffee? It's a nice gesture, and a great way to show your appreciation 💗

Related Topics
  • Forum customisation

    Customisation
    11
    6 Votes
    11 Posts
    231 Views

    Thank you Mark, the changes look fantastic!!

  • Opening links in nodebb widget

    Solved Configure
    6
    4 Votes
    6 Posts
    329 Views

    A more efficient way of including this would be to not over complicate it and leverage a standard iframe (providing the CSP headers of the remote site permit this) like below

    <iframe src="https://www.classmarker.com/online-test/start/?quiz=gag66aea7922f0a5" width="700" height="800"></iframe>

    This works first time every time on your site as intended.

  • Getting Eror When Started NodeBB

    Solved Configure
    7
    2 Votes
    7 Posts
    498 Views

    @phenomlab yes i did.

    i deleted one of plugin then it started to work normally.

  • NodeBB v3 Quick reply

    Solved Configure
    4
    2 Votes
    4 Posts
    244 Views

    here is the link: https://app.transifex.com/nodebb/nodebb/translate/#tr

  • adding some console.log to Nodebb

    Solved Customisation
    4
    1 Votes
    4 Posts
    566 Views

    @eeeee if you’re using the console, you could try

    node app.js > app.log 2>&1

    This would redirect stdout to a file named app.log and redirect stderr to stdout.

    I’m not sure about standard logging under NodeBB, but there is an error log located at logs/error.log.

    Failing that, you could always stop the NodeBB service then use ./nodebb dev from the console which would then provide debug output.

  • NodeBB: Creating pages

    Solved Configure
    9
    0 Votes
    9 Posts
    477 Views

    OK, I think I have figured out how to place a link in the footer which will click to a new page.

  • Blinking text Effect

    Customisation
    3
    5 Votes
    3 Posts
    467 Views

    @phenomlab

    I love it too

    @phenomlab said in Blinking text Effect:

    Has that “broken neon light” look that you see in films.

    It’s exactly that, kind of old neon signs of bar or pubs a bit cyberpunk too 😉

  • Recent Cards plugin customization

    Solved Customisation
    21
    13 Votes
    21 Posts
    3k Views

    @pobojmoks that’s easily done by modifying the code provided here so that it targets background rather than border

    In essence, the below should work

    $(document).ready(function() { $(window).on('action:ajaxify.end', function(data) { $('.recent-card-container').each(function(i) { var dataId = $(this).attr("data-cid"); var color = $('[role="presentation"]', this).css("background-color"); console.log("data-cid " + dataId + " is " + color); $('[data-cid="' + dataId + '"] .recent-card').attr("style", "background-color: " + color); }); }); });