Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
675 views
in Q2A Core by

Hello

I would like to add a string of text and an image below the 1 Answer box on a Q2A page and before the box that borders the answer (refer to the image of one of the pages from my Q2A install.) Is there a simple way to do so? Maybe someone knows of a plugin that could accomplish this?

Thanks a lot in advance.


1 Answer

0 votes
by

Hi , 

Try to write a advanced theme or a layer module inside a plugin which have the below method 
 

public function a_list($a_list)
{
if (!empty($a_list)) {
   $this->part_title($a_list);
   $this->output('<div class="your-class">' ,
   '<h4>Some costum HTML as you wish</h4>', '</div>');
    $this->output('<div class="qa-a-list'.($this->list_vote_disabled($a_list['as']) ? ' qa-a-list-vote-disabled' :                   '').'" '.@$a_list['tags'].'>', '');
    $this->a_list_items($a_list['as']);
    $this->output('</div> <!-- END qa-a-list -->', '');
}
}
Hope this helps ,. 
 
 
...