MyBB Community Forums

Full Version: How To Add Image After 1st Post Message, Using Conditionals?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I use conditionals to put an image, after this code in the postbit template:
{$post['message']}<br/>Conditional code outputs here.

The conditional below outputs after the entire 1st post, but I need it only after the 1st post message.

<if ($postcounter - 1) % $mybb->settings['postsperpage'] == "0" then>
Image Code Here
</if>

Does anyone know how to put a conditional right after the 1st post message of every page?
check if this helps [Thanks to Shade]
Quote:
<if $postcounter == $mybb->settings['postsperpage']*($page-1)+1 then>
    // do something if first post in the current page
</if>
Are you trying to add Adsense after the first post?
Check this reply here: http://community.mybb.com/thread-149764-...pid1056111