Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
10.1k views
in Q2A Core by
I want to construct Navigation order(SiteTitleLink and MainMenu).

Click SiteTile >>> All Activity (Question + Answer + Comment)
Click Menu1 >>> Q&A (Question + Answer)
Click Menu2 >>> Questions (Question only)

Is there like "All Activity is default" / "Homepage is All Activity" option ?

1 Answer

+1 vote
by
This is not currently possible via the admin interface, but it should be a simple code modification to make it work. In qa-page-home.php, change this:

case 'activity':

...to this...

case '': case 'activity':

You can then add a custom link at the front of the menu with goes to the page [your site]/qa - that will show question + answer.
by
Thanks gidgreen. I confirmed that my demand was satisfied by upper change and custom link option.
...