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

I would like to have the page numbers right at the front page of the website and to display it at the top so that the user sees there are already many pages of posted questions. How can I do that?

Q2A version: Q2A 1.5.4
by
good idea! It would be good to have one on top and one at the bottom as is :)

2 Answers

–1 vote
by
selected by
 
Best answer

The front page only shows "recent questions and answers" so is not paginated. I think you can make the front page show the same as /questions by doing this:

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

But I haven't tested that.

 

Edit: as for copying the links at the top, that is done in an advanced theme. In the main() function, you'll see $this->page_links() towards the end. Just copy that line and put it further up, anywhere above main_parts() should work.

by
replace them with the code Scot says. it works
by
By changing 'questions' => '', you change the main page, but you do not add a pagination to the default page: yourdomain.com/qa (!)
by
Where should this be done ?
by
same problem here, you still have no pagination inside the categories, there it still says: ....to see all questions in this category...
+1 vote
by
The selected best answer, does not bring pagination to front page! ( as you wanted it to)
...