Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
1.4k views
in Q2A Core by
how to disable and hide extra privileges on profile page?

3 Answers

+4 votes
by
selected by
 
Best answer

Try this simple hack:

in file: qa-include / qa-page-user-profile.php

replace the following line (# 527):

if (count($showpermits))

with:

if (0)

I wish it is what you wanted :)

by
+1
Thanks a lot it's work correctly
by
+1
very good answer, thanks a lot, it worked for me too.
+2 votes
by

Drop this in your stylesheet

.qa-template-user .qa-part-form-profile .permits{ display: none; }

by
–1
i KNOW THIS But i want to remove it from the Source
+5 votes
by

You want probably to show the extra-privileges only to moderators try this instead :

replace 

if (count($showpermits))

with  

if (count($showpermits) && ($loginlevel>=QA_USER_LEVEL_MODERATOR))

 

...