Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
0 votes
336 views
in Q2A Core by
I want to place ad just on the top of answers on each page of individual question page.How to do?

 

Thanking you.

2 Answers

0 votes
by
With Widget Anywhere - plugin from Noahy, then you can choose where would you display anything - accepts html codes... Just type into search "Widget anywhere" and download plugin..
0 votes
by

You can place your advertisement via advance theme. Place below code into your qa-theme.php. If it is SNOW theme than somewhere around after line #116. However place doesn't matter

 

function q_view($q_view)
{
qa_html_theme_base::q_view($q_view);
 
$this->output('YOUR ADVERTISE HERE'); // here you can use html tags or simpel string
}
 
This will display yoru advertise after question box and before answer starts

 

...