Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
330 views
in Q2A Core by
As we publish a answer , the question comes on top in the homepage list ; Is it possible to do the same with comments too ?
Q2A version: 1.5

1 Answer

+1 vote
by

You could change the page mappings so that the home page shows all activity. This will include recent comments. Add this in qa-config.php:

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