MyBB Community Forums

Full Version: adsense plugin or code
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to show the adsense code in the first 3 posts. I have tried many plugin. This is incompatible with mybb 1.8.7.
Can you help? code or plugin...
you can use template conditionals plugin & manual coding in the postbit templates
find {$post['message']} in the postbit & postbit_classic templates , add after it
<if (($postcounter - 1) % $mybb->settings['postsperpage'] < 3) then>
<div class="pbadsense">your AdSense code here</div>
</if>