I'm finally upgrading my site to version 1.3 (from 1.2). I started the theme again from scratch in order not to overwrite too much new stuff. But I must have changed quite a lot around in my old theme....
First, I want to hide the related questions from the bottom. But it seems to just call generic functions like "q_list_and_form" - how do I detect that it's the related questions?
The second part is to put the related questions on the sidebar. In my old theme I simply had this in the sidepanel function:
if ( isset($this->content['related_q_list']) )
{
$this->output('<div class="qa-related-sidebar">');
$this->q_list_titles($this->content['related_q_list']);
$this->output('</div>', '');
}
But now there doesn't seem to be a "related_q_list" element - is there a different way to do it?