Not able to access my local install at the moment, but....In trying to output the questions beneath my custom content in my Advanced theme, might I be somewhere close in thinking the code would be...
<?php
class qa_html_theme extends qa_html_theme_base
{
function q_list_item($question)
{
if ($this->template=='name_of_my_page')
$this->output('<DIV CLASS="name-of-div-created-beneath-my-custom-content"></DIV>');
else
qa_html_theme_base::page_link_content($page_link);
}
}
?>
or this below??
<?php
class qa_html_theme extends qa_html_theme_base
{
function q_list_item($question)
{
if ($this->template=='name_of_my_page')
{
$this->output('<DIV
CLASS="name-of-div-created-beneath-my-custom-content'.@$question['classes'].'" '.@$question['tags'].'>');
$this->q_item_stats($question);
$this->q_item_main($question);
$this->q_item_clear();
$this->output('</DIV> ', '');
else
qa_html_theme_base::page_link_content($page_link);
}
}
?>
Apologies if this question is a bit simple, but as you can probably tell I'm no expert at php, but desperate to make my design ideas work.
Thanks