Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+4 votes
463 views
in Q2A Core by
edited by
With 1.8.0-beta and before we can see the user's questions and answers, example:

http://www.question2answer.org/qa/user/q2apro/questions

http://www.question2answer.org/qa/user/q2apro/answers

However, there is still not the list of comments - which would be *very helpful*:

http://www.question2answer.org/qa/user/q2apro/comments (not found)

Core change needed:

1. pages/user.php - adding:

case 'comments':
   qa_set_template('user-comments');
   $qa_content = include QA_INCLUDE_DIR . 'pages/user-comments.php';
   break;

2. New file: /pages/user-comments.php with qa_db_user_recent_c_qs_selectspec() calling.

@Scott @pupi1985 - Can you do the implementation? I am certain you are way faster than me doing this.

---

PS:
- my request from 2015: http://www.question2answer.org/qa/46055/user-questions-and-user-answers-exist-user-comments-missing
- my request from 2012: http://www.question2answer.org/qa/18716/how-to-list-all-comments-of-a-certain-user
Q2A version: 1.8.0 beta
by
I think there is no need of comment page separately, it can be seen in recent activity:-
 http://www.question2answer.org/qa/user/Shrisun/activity
by
Then you wouldnt need answers and questions pages either. Your argument is invalid. It is very helpful to see your last x comments - otherwise you search the posts for ages.
by
you are right @q2apro comments page would be more useful.

Please log in or register to answer this question.

...