Skip to content

Editing a reputation for a user in a nodeBB based forum

Solved Customisation
9 4 2.0k 1
  • Hello everyone, for a long time I was looking for an option to edit the reputation of the users in my forum,
    Whether it’s adding a reputation to a veteran user, or lowering a reputation to a user who breaks the rules
    I recently found in GitHub a plugin to edit the reputation for users easily, and I want to share with you the plugin
    Plugin installation commands: npm i nodebb-plugin-change-reputation
    The plugin is in Hebrew, but simple and easy to use.
    Because you do not speak Hebrew I will give a short tutorial.
    After installing and logging in to the plugin, the first line selects the user, the second line the amount of reputation, and the third line chooses whether to send an alert to the user or not to send. its not easy?

  • elhana fineundefined elhana fine has marked this topic as solved on
  • Hello everyone, for a long time I was looking for an option to edit the reputation of the users in my forum,
    Whether it’s adding a reputation to a veteran user, or lowering a reputation to a user who breaks the rules
    I recently found in GitHub a plugin to edit the reputation for users easily, and I want to share with you the plugin
    Plugin installation commands: npm i nodebb-plugin-change-reputation
    The plugin is in Hebrew, but simple and easy to use.
    Because you do not speak Hebrew I will give a short tutorial.
    After installing and logging in to the plugin, the first line selects the user, the second line the amount of reputation, and the third line chooses whether to send an alert to the user or not to send. its not easy?

    @elhana-fine Thanks for the tip - this is very useful 🙂

  • What is the difference with the plugin actually installed here ?
    Maybe delete hebrew and code in English is better

  • What is the difference with the plugin actually installed here ?
    Maybe delete hebrew and code in English is better

    @DownPW
    What plugin is there here that allows you to build a reputation?
    I only know a plugin to restrict new users from giving a reputation.

  • @DownPW
    What plugin is there here that allows you to build a reputation?
    I only know a plugin to restrict new users from giving a reputation.

    @elhana-fine said in Editing a reputation for a user in a nodeBB based forum:

    What plugin is there here that allows you to build a reputation?

    nodebb-plugin-user-level

  • Yes that why I ask the question 🙂

  • Hello everyone, for a long time I was looking for an option to edit the reputation of the users in my forum,
    Whether it’s adding a reputation to a veteran user, or lowering a reputation to a user who breaks the rules
    I recently found in GitHub a plugin to edit the reputation for users easily, and I want to share with you the plugin
    Plugin installation commands: npm i nodebb-plugin-change-reputation
    The plugin is in Hebrew, but simple and easy to use.
    Because you do not speak Hebrew I will give a short tutorial.
    After installing and logging in to the plugin, the first line selects the user, the second line the amount of reputation, and the third line chooses whether to send an alert to the user or not to send. its not easy?

    @elhana-fine thanks for the tip… a useful plugin indeed…

  • Hello everyone, for a long time I was looking for an option to edit the reputation of the users in my forum,
    Whether it’s adding a reputation to a veteran user, or lowering a reputation to a user who breaks the rules
    I recently found in GitHub a plugin to edit the reputation for users easily, and I want to share with you the plugin
    Plugin installation commands: npm i nodebb-plugin-change-reputation
    The plugin is in Hebrew, but simple and easy to use.
    Because you do not speak Hebrew I will give a short tutorial.
    After installing and logging in to the plugin, the first line selects the user, the second line the amount of reputation, and the third line chooses whether to send an alert to the user or not to send. its not easy?

    @elhana-fine and when you write -100 in the second line, it subtracts 100 reputation points… This is a very useful plugin for us. Thanks again for sharing.

  • is there any way to see whose reputation is changed by this plugin?


Did this solution help you?
Did you find the suggested solution useful? Support 💗 Sudonix with a coffee
If your organisation needs deeper expertise around infrastructure, security, or technology leadership, learn more about Phenomlab Ltd. Many of the deeper technical guides behind Sudonix are published there.

Related Topics
  • Forum customisation

    Customisation nodebb forum customised
    11
    2
    6 Votes
    11 Posts
    1k Views
    Thank you Mark, the changes look fantastic!!
  • 3 Votes
    5 Posts
    956 Views
    @crazycells Agreed. It takes a more sensible approach. Nobody ever upvotes the first post - it’s usually much further down as the conversation progresses.
  • adding some console.log to Nodebb

    Solved Customisation nodebb
    4
    1 Votes
    4 Posts
    1k 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.
  • Heading text on NodeBB forum

    Solved Customisation
    27
    1 Votes
    27 Posts
    5k Views
    @mventures I’ve not done anything here.
  • NodeBB inline videoplayer

    Solved Customisation nodebb
    12
    3 Votes
    12 Posts
    2k Views
    @phenomlab YAY! It works Thanks so much
  • 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.
  • Recent Cards plugin customization

    Solved Customisation nodebb
    21
    1
    13 Votes
    21 Posts
    7k 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); }); }); });
  • NodeBB Design help

    Solved Customisation
    8
    3
    2 Votes
    8 Posts
    2k Views
    @riekmedia I’ve applied some new CSS to your site. Can you reload the page and try again ? For the record, this is what I added #footer { background: #2d343e; border-top: 4px solid #2d343e; font-size: 0.9em; margin-top: 70px; padding: 80px 0 0; position: relative; clear: both; bottom: 0; left: 0; right: 0; z-index: 1000; margin-left: -15px; margin-right: -338px; } The /categories page seems a bit messed up, so looking at that currently EDIT - issued some override CSS in the CATEGORIES widget <!--- CSS fix for overspill on /categories page - DO NOT DELETE --> <style> #footer { margin-right: -45px; } </style> That should resolve the /categories issue.