First time here? Check out the FAQ!

Revision history  [back]

I was able to enable it by editing the following files:

  • skins/default/templates/question/content.html
  • skins/default/templates/question/new_answer_form.html

In the first, change

{% if question.closed == False and request.user == question.author %}{# this is outside the form on purpose #}

to this:

{% if question.closed == False %}{# this is outside the form on purpose #}

And in the second file, remove this line:

{% if user == question.author %}style="display:none"{% endif %}