MyBB Community Forums

Full Version: Add banner after 1st post by editing template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How to add a banner after 1st post by editing the template?
you have to install template conditionals plugin and modify active theme's postbit and postbit_classic templates like below

find {$post['message']}</div> and add after it (in a new line)

<if $postcounter == '1' then>
your advertisement code here
</if>