Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
624 views
in Q2A Core by
I hope I'm not asking a real dumb question, I couldn't figure it out for myself :) I have a custom front page and I want to put a list with the latest questions on it. The full list of questions is on a separate page. I guess RSS would have to do with it but I can't seem to figure out a solution

1 Answer

0 votes
by

I had this question myself. Change your home page back to recent questions and answers. (Remove the custom home page checkbox.) Then, create an advanced theme. In your advanced theme, place this code:

function main()

{

if($this->request=='') { ?>

//place custom home page html here

<?php

qa_html_theme_base::main();

}

else {

qa_html_theme_base::main();

}

}

For a demo, see www.wikitranslation.org

...