Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
253 views
in Q2A Core by
how to show ads or text

on first answer in any question or selected answer
Q2A version: 1.7

1 Answer

0 votes
by
edited by

Add below to your theme file than you might need to set "Selected answer on top" option

public function a_list_items($a_items)
{
    $this->output('PUT YOUR ADVERT HTML CODE'); 
    parent::a_list_items($a_items);
}
...