Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
3.5k views
in Q2A Core by
retagged by
I want to display recent activity on the home page, but I also want a custom home page. Is there any way to have both?

1 Answer

+1 vote
by

You would have to use an advanced theme for that. You could override the main() function in your theme. In your version check which page is being requested via $this->template - if it's '' then output your extra HTML. Be sure to call the base main function at the end of yours via qa_html_theme_base:main();

...