Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
  • Register
Welcome to the Q&A for Question2Answer.

If you have questions about the platform, click here to ask and please use English.

If you just want to try Q2A, please use the demo, which also grants admin access.

Apr 29: Q2A 1.5.2

Is it possible to change the pointing system so that not add points for users who answers a question for the 2nd time?

+5 votes
Is it possible to change the pointing system so that not increase points of users that answer a question for the second time?

In fact, now a person can gain point by answering the same question.
asked Aug 24, 2011 in Q2A Core by milad621
+1 for this.
(every user should gain only once points for answering the same question, but if there are several answers from different people - everyone should get points for their answers - not only the first who answers!)
"every user should gain only once points for answering the same question"
How can we do that?
Now q2a give points to all answers of a user for the same question.

1 Answer

+1 vote

This may be possible with a plugin, something like this:

  • Track the voting events 'a_vote_up''a_vote_down''a_vote_nil'.
  • Check if the answer is the second by the user in the question (i.e. check if they have any questions with the same parentid and an earlier date/time).
  • If so, remove the points they would have gained from that answer.

This wouldn't survive points recalculations though, so maybe not a great idea.

answered Sep 20, 2011 by DisgruntledGoat