oohps, me he confundido
Para tu foro si he visto mods en google, intenta buscarlo por.
put adsense after first post in Phpbb
He modificado mi codigo para colocar el adsense mas bien en el mismo post y no entre posts:
Abrir el mismo archivo skin_topic.php
ubicar la funcion: function RenderRow
cambiar la linea:
CODE
global $ibforums;
por
CODE
global $ibforums, $contarAdsense;
debajo de //--starthtml--// agregar:
CODE
//startif
if ( $contarAdsense<2 )
{
$ADSENSEHTML = <<<EOF
<center><br><br><script type="text/javascript"><!--
aqui el codigo del adsense//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script></center><br>
EOF;
}
else
{
$ADSENSEHTML = <<<EOF
EOF;
}//endif
cambiar esta linea:
CODE
<div class='postcolor'>{$post['post']} <!--IBF.ATTACHMENT_{$post['pid']}--></div>
por
CODE
<div class='postcolor'>{$post['post']} <!--IBF.ATTACHMENT_{$post['pid']}-->$ADSENSEHTML</div>
antes de //--endhtml--// agregar:
CODE
$contarAdsense++;