MyBB Community Forums

Full Version: ads after each post
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
This should display ads to guest and admins after post 1 and 3.

<if $postcounter == 1 OR $postcounter == 3 then>
<if $mybb->user['usergroup'] == '1' OR $mybb->user['usergroup'] == '4' then>
<table border="0" width="100%" align="center">
  <tr>
    <td>
<div align="center" style="padding: 10px;">


<!--put adsense here-->


</div>
    </td>
  </tr>
</table>
</if>
</if>
^ conditions in templates work only if relevant plugin is installed ... [see template conditionals ...]
(2011-12-16, 06:05 PM)Goran Wrote: [ -> ]can i display them after every first post only? or possibly every third or fourth if the thread is big?

Just use MyAdvertisements plugin.
Pages: 1 2