Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+3 votes
925 views
in Q2A Core by
I've searched and read a few posts regarding this on here but can't find a solution.

Thanks.
Q2A version: 1.7.3

1 Answer

+3 votes
by
selected by
 
Best answer

There is no pagination for the "Recent questions and answers" view which is the one shown on the home page by default. Same goes for All Activity.

However you can make the other pages like "Recent questions" or "Hot" or "Unanswered" into the home page if you want. To do that you need to set the $QA_CONST_PATH_MAP variable in qa-config.php. This will make "Recent questions" the home page:

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

by
Thanks Scott.

This answers my question. I was really looking to have pagination on the 'Recent questions and answers' page by default.

So, instead I have set the Activity page to list 50 posts, to show more of a history (which is why I wanted pagination by default) and the Recent questions and answers page to 25 for better performance. And users can click to go to the full list of questions if needed.
by
The lack of pagination for "Recent" and "Activity" creates a redundancy in "click for full list of questions". Users will view questions that were already available in the home page. It might be confusing.
...