Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
4.2k views
in Q2A Core by
how to sort main page by last comment and answer

1 Answer

0 votes
by
selected by
 
Best answer

I guess you mean using the All Activity section, as this site does. Just enable that page in the admin/pages section and then add this to your qa-config.php file:

$QA_CONST_PATH_MAP=array(
    '' => 'activity',
);
 
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?
by
it is work fine , thanks ;
...