Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
1.3k views
in Q2A Core by

I currently add this to my qa-config.php

$QA_CONST_PATH_MAP=array(
  'questions' => '',
);

Is it possible to add sort by recent answer and comment?

1 Answer

+1 vote
by

You can't choose the sorting. What you can choose is to show a new section (the All Activity one) as I explained in this other answer http://www.question2answer.org/qa/41479/sort-by-last-comment-and-answer?show=41484#a41484

I would remove what you've added (I'm not sure why you added that or whether you fully understand what that does) and replace it with the content in the other answer:

$QA_CONST_PATH_MAP=array(
    '' => 'activity',
);

...