Edit the following page...
qa-include/pages/user-profile.php
change this at line 393...
// Private message link
if (qa_opt('allow_private_messages') && isset($loginuserid) && $loginuserid != $userid && !($useraccount['flags'] & QA_USER_FLAGS_NO_MESSAGES) && !$userediting) {
$qa_content['form_profile']['fields']['level']['value'] .= strtr(qa_lang_html('profile/send_private_message'), array(
'^1' => '<a href="' . qa_path_html('message/' . $handle) . '">',
'^2' => '</a>',
));
}
to this...
// Private message link
// only display for admin
if ( qa_get_logged_in_level() >= QA_USER_LEVEL_SUPER ) {
if (qa_opt('allow_private_messages') && isset($loginuserid) && $loginuserid != $userid && !($useraccount['flags'] & QA_USER_FLAGS_NO_MESSAGES) && !$userediting) {
$qa_content['form_profile']['fields']['level']['value'] .= strtr(qa_lang_html('profile/send_private_message'), array(
'^1' => '<a href="' . qa_path_html('message/' . $handle) . '">',
'^2' => '</a>',
));
}
}