Hello,
I want show/insert ads automatic every 3 line in first post or every 200 word in first post.
this is the example:

Uploaded with
ImageShack.us
I add new plugin
Product: vbulletin
Hook Location: postbit_display_complete
Title: Ads every 200 word
Execution Order: 5
Plugin PHP code: $post['text_length'] = strlen($post['message']);
I go to edit
Postbit_Legacy template
I find this code in Postbit_Legacy:
$post[message]
I put this code below:
Quote:
<if condition="THIS_SCRIPT == 'showthread'">
<if condition="$post['text_length'] < 200">
<br>
Ads code 468x60
</if>
</if>
|
Result code:
Quote:
$post[message]
<if condition="THIS_SCRIPT == 'showthread'">
<if condition="$post['text_length'] < 200">
<br>
Ads code 468x60
</if>
</if>
|
But still not working :'(
plugin dont want automatic show ads every 200 word or every 3 line in first post.
I'm using vb.3.8.x
Please help me....!!