Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+2 votes
798 views
in Q2A Core by
how to hide extra privileges on profile page?
Q2A version: 1.5.2

1 Answer

+1 vote
by
I only found a way scripting within the includes... better would be in your theme, anyhow, I changed the display of privileges so that only from moderator and up will see it...

qa-includes/qa-page-user.php
// to show privileges only to moderators and up

#347     if (($loginlevel>=QA_USER_LEVEL_MODERATOR) && !qa_user_permit_error()) {

#367    'note' => qa_lang_html('users/only_shown_moderators'),  // adds note: visible only to moderators

#369    }
by
thanks! it's working.
by
so cool ! just keep a file somewhere with the changes you make to the 'core'... right now you can update to 1.5.3 and it's impossible to recall al the little changes, that's why it's way better if you do things in the theme,

anyhow I'm happy it worked 4U
by
How and where do you put this code??
...