Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
467 views
in Q2A Core by
retagged by
On user pages, the avatar is linked to the page itself.

How can this link be removed?

1 Answer

0 votes
by

In qa-page-user.php, change:

qa_get_user_avatar_html($useraccount['flags'], $useraccount['email'], $useraccount['handle'],

... to ...

qa_get_user_avatar_html($useraccount['flags'], $useraccount['email'], null,

by
Excellent. Thanks.
...