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
  • Adding reputation

    Solved Customisation reputation
    17
    1
    4 Votes
    17 Posts
    2k Views
    @OT very odd. Shouldn’t be that complex, but glad you have it working.
  • 4 Votes
    8 Posts
    1k Views
    @Panda said in Upgrade to NodeBB v3? 2BB or not 2BB, that is the question!: So although thats a plugin it has Widget like element and stopped working on the Theme change Which is normal based on the widgets being reset when you change themes.
  • Want to use Sudonix themes ?

    Chitchat themes nodebb
    80
    1
    34 Votes
    80 Posts
    14k Views
    omg thank you Mark.
  • [NODEBB] Help for my custom CSS

    Solved Customisation nodebb css bugfix
    237
    49 Votes
    237 Posts
    80k Views
    @baris said: You should change your selectors so it doesn’t look at the entire document. You probably only want to apply fancybox to stuff inside the #content element which is what changes when the user navigates around the page. So use $('#content a').... for your selectors then the forum logo in the header won’t be selected. I modified the JS Fancybox code now and this code and it seem better // --------------------------------------------- // Fancybox Media Reader (Without Website Logo) // --------------------------------------------- if (top.location.pathname !== '/login') { $(window).on('action:posts.loaded', function(data) { console.log("Polling DOM for lazyLoaded images to apply Fancybox"); $(document).ready(function() { $('#content a').not('.forum-logo').not(".avatar").not(".emoji").not(".bmac-noanimate").each(function() { $('#content a[href*=".jpg"], #content a[href*=".jpeg"], #content a[href*=".png"], #content a[href*=".gif"], #content a[href*=".webp"]').addClass("noanimate"); }); }); }); } if (top.location.pathname !== '/login') { $(document).ready(function() { $(window).on('action:ajaxify.end', function(data) { $('#content a').not('.logo').not(".avatar").not(".emoji").not(".bmac-noanimate").each(function() { $('#content a[href*=".jpg"], #content a[href*=".jpeg"], #content a[href*=".png"], #content a[href*=".gif"], #content a[href*=".webp"]').addClass("noanimate"); data.preventDefault() // Strip out the images contained inside blockquotes as this looks nasty :) $('#content blockquote img').remove(); }); Fancybox.bind( '#content a[href*=".jpg"], #content a[href*=".jpeg"], #content a[href*=".png"], #content a[href*=".gif"], #content a[href*=".webp"]', { groupAll: true, } ); }); }); } // Chat fancybox - fires when chat module loaded and AJAX calls new chat $(document).ready(function() { $(window).on('action:chat.loaded', function(data) { // >>> Se limiter au contenu principal uniquement <<< $('#content img').not('.forum-logo').not(".avatar").not(".emoji").not(".bmac-noanimate").each(function() { var newHref = $(this).attr("src"); $(this).wrap("<a class='fancybox' href='" + newHref + "'/>"); $('#content a[href*=".jpg"], #content a[href*=".jpeg"], #content a[href*=".png"], #content a[href*=".gif"], #content a[href*=".webp"]').addClass("noanimate"); data.preventDefault(); // Strip out the images contained inside blockquotes as this looks nasty :) $('#content blockquote img').remove(); }); Fancybox.bind( '#content a[href*=".jpg"], #content a[href*=".jpeg"], #content a[href*=".png"], #content a[href*=".gif"], #content a[href*=".webp"]', { groupAll: true, } ); }); }); For the logo, I must use overflow: visible !important; on [component="brand/logo"] /* --- Logo --- */ [component="brand/logo"] { max-height: 50px; width: auto; height: auto; max-width: 100%; display: block; object-fit: contain; object-position: left center; overflow: visible !important; } Better result !!
  • NodeBB Footer

    Solved Customisation footer nodebb
    10
    1 Votes
    10 Posts
    2k Views
    @phenomlab said in NodeBB Footer: @jac and you. Hope all is well and you recover quickly Thanks pal
  • [NodeBB] username cards

    Solved Customisation nodebb
    8
    5 Votes
    8 Posts
    2k Views
    @phenomlab Aha…nice to know. As always thank you for the reply and information.
  • Forum customisation

    Customisation forum customise
    17
    3 Votes
    17 Posts
    3k Views
    @jac said in Forum customisation: @phenomlab said in Forum customisation: @jac 100%. Just setting up some free time. I’m on annual leave from work offer the coming 2 weeks so hopefully will have a bit more time then. Not a problem Mark, I don’t wish for you to use all your spare time doing that, just do it when you can, no issues I know you’re busy doing other things but when you get a chance mate I’m happy for this to go ahead along with the RSS script.
  • unable to upvote on forum

    Solved Performance
    10
    1
    3 Votes
    10 Posts
    2k Views
    @phenomlab yes, i can understand. it is working now