Quote:
Originally Posted by CyberAlien
Don't know if this will work, but...
open includes/class_postbit.php, find this:
Code:
function construct_postbit(&$post)
{
add after it:
Code:
static $post_counter;
if(!isset($post_counter))
{
$post_counter = 0;
}
else
{
$post_counter ++;
}
then in postbit use <if condition="$post_counter == 0"> ad code here </if>
|
thank you all try for this..