Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
491 views
in Themes by
edited by

Hi.

How to add the "Next" button to the main page or how to make the page /questions the home?
So that when you visit the site we see a page /questions (or a page with the same content, only without /questions slug)

I will be grateful for any help

Q2A version: 1.8.0

1 Answer

+2 votes
by

The activity page can't be paginated. You can of course code the pagination yourself but it will not be efficient at all due to how the post updates are structured. On the other hand, the questions page can be paginated.

So in order to make the questions page your home page you could add this to your qa-config.php file:

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

...