Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+5 votes
1.1k views
in Q2A Core by

CanI avoid displaying this on Super-Administrator profile?

Just the previleges, so users can't see it

 

Extra privileges:

Recategorizing any question
Editing any question
Editing any answer
Editing any comment
Editing posts silently
Closing any question
Selecting answer for any question
Viewing IPs of anonymous posts
Viewing who voted or flagged posts
Approving or rejecting posts
Hiding or showing any post
Deleting hidden posts

 

Q2A version: 1.6.3

1 Answer

+4 votes
by
selected by
 
Best answer
You can hide them by using CSS:

#permits { display:none; }

Add this line to your styles.css file within the folder qa-theme.
by
I pasted this code in the file you stated but nothing happened, why is that?
by
Do you have the latest q2a version installed?

Do you have other CSS that targets #permits?

Try also:
#permits { display:none !important; }
by
I am using the latest version i.e. 1.6.3
I don't know what do you mean by second question but I hadn't even touched CSS file before.
I have tried the second code as well but still all the privileges show.
by
It must work with the latest version, or you are doing something wrong.

Try it yourself:
1. use Firefox, open http://www.question2answer.org/qa/user/gidgreen
2. Hit Shift+F7 to bring up the Style Editor
3. Enter:
#permits { display:none; }

The "Extra privileges" are gone.
...