Skip to content

Editing a reputation for a user in a nodeBB based forum

Solved Customisation
9 4 1.5k 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? Why not buy me a coffee? It's a nice gesture, and a great way to show your appreciation ๐Ÿ’—

Related Topics
  • 3 Votes
    1 Posts
    344 Views
    No one has replied
  • Spam spam spam

    Solved Configure nodebb
    6
    2 Votes
    6 Posts
    516 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.
  • NodeBB upgrade now cant post

    Solved Bugs nodebb
    5
    2 Votes
    5 Posts
    732 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.
  • Custom badges

    Solved Customisation nodebb
    103
    2
    49 Votes
    103 Posts
    17k Views
    Perfect
  • 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.
  • Error install plugin

    Solved Customisation plugin nodebb
    8
    1
    1 Votes
    8 Posts
    1k Views
    @pobojmoks Not WP plugin but nodeBB but it a known bug
  • RSS parser script [NodeBB]

    Customisation nodebb rss script
    47
    9 Votes
    47 Posts
    9k Views
    @phenomlab said in RSS parser script [NodeBB]: @jac Not yet. Sorry. Have some other work commitments I need to prioritise. Hoping to get to this over the weekend. No worries at all mate, thanks
  • [NodeBB] Creating new user to auto post content

    Solved Customisation
    3
    0 Votes
    3 Posts
    1k Views
    @phenomlab many thanks Mark .