Ask Your Question
1

How to make answers private on user's profile

asked 2012-08-08 16:08:25 -0500

kintali gravatar image kintali flag of United States
111 5 1 9
http://www.cs.princeton.e...

Askbot shows the following information on the user's profile : questions, answers, votes, tags, badges. In my website (TrueShelf) all the answers are private. I want to make the list of answers on the profile page private i.e., only the user (say user A) can see his list of answers. If the user is not A then he should only see the questions, votes, tags and badges. But not answers.

  • How to make the answers list private on the user profile page ?
delete close flag offensive retag edit

1 Answer

Sort by ยป oldest newest most voted
3

answered 2012-08-09 02:57:57 -0500

bgenevaux gravatar image bgenevaux flag of France
189 1 6 13

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.

link publish delete flag offensive edit

Comments

Awesome. Thanks.

kintali ( 2012-08-10 01:55:23 -0500 )edit

Your answer

Please start posting your answer anonymously - your answer will be saved within the current session and published after you log in or create a new account. Please try to give a substantial answer, for discussions, please use comments and please do remember to vote (after you log in)!

[hide preview]

Reliable Askbot Hosting

Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.

create your Q&A site
30 days free trial

Question tools

Follow
1 follower

subscribe to rss feed

Stats

Asked: 2012-08-08 16:08:25 -0500

Seen: 47 times

Last updated: Aug 09 '12