Revision history [back]
Try to edit askbot/skins/default/templates/user_profile/user_stats.html
, replacing
{% include "user_profile/users_questions.html" %}
<a name="answers"></a>
by
{% include "user_profile/users_questions.html" %}
{% if request.user == view_user or request.user|can_moderate_user(view_user) %}
<a name="answers"></a>
and
<br/>
<a name="votes"></a>
by
<br/>
{% endif %}
<a name="votes"></a>
I haven't tested it, but normally it'll do what you want.