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

Hello.

Is possible to disable links to the users into the questions (in the text: answered date by user)?

Thanks in advance.

Q2A version: 1.5

1 Answer

0 votes
by

Change the function qa_get_one_user_html, into qa-app-users.php file, with this:

 

function qa_get_one_user_html($handle, $microformats)
{
if (qa_to_override(__FUNCTION__)) { $args=func_get_args(); return qa_call_override(__FUNCTION__, $args); }
 
return strlen($handle) ? (qa_html($handle)) : '';
 
}
 
Regards.
...