הצבעת נושאי דיסקורס

אני מאוד נהנה מהתוסף הזה - תודה למפתחים שלעבוד עליו, זה תרומה גדולה לקהילת דיסקורס שלי.

אני סקרן לגבי משתמשים שמקבלים הצבעות לאחר ששימושו בכל ההצבעות שלהם. העליתי את הגבלות ההצבעות למשתמשים כמה פעמים כי חלק מחברי הקהילה המעורבים ביותר מצביעים על לא מעט נושאים. תהיתי האם ניתן לחדש את ההצבעות עבור משתמש מסוים עם הזמן עד להגעה לגבול, או שיש דרך אחרת להעניק למשתמשים הצבעות נוספות. נראה כי המנגנון העיקרי להענקת הצבעות הוא מספר קבוע לכל רמת אמון, אבל ייתכן שאני מפספס משהו.

תודה!

2 לייקים

Hey nivshah :waving_hand:

If I’d have to hazard a guess, the reason you can limit votes is so that your members use them wisely and don’t vote for everything else it kind of devalues a vote.


At the moment one way users can get their vote back is by closing the topic. Let’s say you decided to implement a voted feature into a game for example, you can close the topic and this will refund users that vote if you will and they will be able to use it on another topic.

4 לייקים

סגירת נושא היא בדיוק מה שהייתי צריך כאן. תודה.

2 לייקים

:partying_face: This plugin is now bundled with Discourse core as part of Bundling more popular plugins with Discourse core. If you are self-hosting and use the plugin, you need to remove it from your app.yml before your next upgrade.

2 לייקים

ייתכן שפספסתי זאת, אך האם ניתן לשנות את הצבעתך לאחר שהגשת אותה? נניח שמשתמש מצביע בטעות לנושא הלא נכון, או משנה את דעתו - האם הוא תקוע עם טעותו?

They are apparently able to be liked now according to this topic on a forum I am in: Suggestion Topics can be liked now - Not Terraria Related - Dark Gaming

I’m not sure this is intended but I just wanted you to know

I think it’s because the reaction plugin is enabled. The code from the topic voting plugin that hides the like button doesn’t hide the reaction button.

You’d need CSS that hides the reaction button and existing reactions. Something like

.topic-post.voting-post {
  .discourse-reactions-actions,
  .discourse-reactions-actions-button-shim {
    display: none;
  }
}
2 לייקים

Hi,

We noticed the following site settings which control the active vote limit for each Trust Level:

  • topic voting tl0 vote limit

  • topic voting tl1 vote limit

  • topic voting tl2 vote limit

  • topic voting tl3 vote limit

  • topic voting tl4 vote limit

We would like to effectively remove or disable the vote limit for all or most Trust Levels (TLs), allowing users to have an unlimited number of active votes.

Could you please advise on the recommended way to achieve this?

Is there a specific value (e.g., setting it to 0 or -1) that signifies unlimited votes for these settings?

Thank you.

לייק 1

That sounds handy in your case – but a topic creator may not always want to vote for that topic. A comment I made elsewhere:

לייק 1

You can always un-vote a topic. Each user has limited votes at their disposal, so this is necessary.

Fair point. I’d love for it to be a configurable option, though.

לייק 1

Is there a way to configure advanced search with topic voting? I saw this post, but it is closed: Is there a way to filter serach results based on Voting? , and I have users wondering. We only have a few places where you can vote, so would be great if you could limit the search in advanced search and sort by votes.

Advanced search won’t currently do it, but the filter parameters mentioned in the linked post might be more helpful than it seems at first glance. Not quite as handy as an advanced search option, but maybe better than nothing:

There are a few different voting factors you can filter on:

And depending on how you track things, you can either:

  • add status:open
  • exclude a tag with a “-” in front, like -tag:completed

So you can see the most popular open requests with a filter like:

  • category:feature status:open order:votes
  • category:feature -tag:completed order:votes

Then, for your users, you could save the filter URL to a sidebar link:

  • /filter?q=category%3Afeature%20status%3Aopen%20order%3Avotes%20
  • /filter?q=category%3Afeature%20-tag%3Acompleted%20order%3Avotes%20

When a filtered view is open, the filter parameters are shown, and a user can add additional keywords to narrow it down further:

Filter entry window with a keyword added to existing params.

לייק 1

Not perfect, but looks like there is more possibility there than I realized. Thank you.

לייק 1