Admin CP -> Styles & Templates -> Style Manager -> « » -> Postbit Templates -> postbit or postbit_legacy (depending on which layout you are using)
Add this code to the very bottom of the template:
[hangi stili kullanıyorsanız dikey veya yatay olarak, o stili açın]
bu kodu en alta ekleyin
Kod:
<if condition="$post[postcount] == 1">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsored Links</td>
</tr>
<tr>
<td class="alt1" align="center">
BANNER CODE HERE
By DesTRuctionS
</td>
</tr>
</table>
</div>
$spacer_close
</if>
AYRICA
belirli bir mesaj sayısından sonra gösterilmesini isterseniz, (mesela her 3 mesajda bir reklam) o zaman bu kodu koymalısınız.
Kod:
<if condition="$post[postcount] % X == 0">
$spacer_open
<div style="padding:0px 0px $stylevar[cellpadding]px 0px">
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="thead" align="left">Sponsorumuz</td>
</tr>
<tr>
<td class="alt1" align="center">
BANNER CODE HERE
By DesTRuctionS
</td>
</tr>
</table>
</div>
$spacer_close
</if>
mesela her 3 mesajda bir gözükmesini isterseniz X i 3 yapın.