View Full Version : How to displaying advert after first post, 15th post and 29th post?
Spinball
09-06-2012, 01:31 PM
How do I identify the first, 15th and 29th post on the page please?
And then in the conditional in postbit_legacy, do I just eval the similar templates for each advert?
RyanFabbro
09-06-2012, 02:19 PM
im not 100% on this sombody correct me if im wrong, i know for a fact to get it to display after the first post you would go into postbit / postbit legacy and at the very bottom add
<if condition="$post[postcount] == 1">
your ad code here
</if>
so i can only assume what your looking for would be the same steps but use
<if condition="$post[postcount] == 1,15,29">
ad code
</if>
again im not 100% on that, and dont relly want to make 29 tests post to check it lol sry but it seems right =)
How do I identify the first, 15th and 29th post on the page please?
I think you can use <if condition="in_array($GLOBALS['counter'], array(1, 15, 29))">. That will identify the post number on the current page, not in the thread. I think the default is 10 posts per page, so with the default you wouldn't ever see the 15th or 29th.
And then in the conditional in postbit_legacy, do I just eval the similar templates for each advert?
Sorry, I don't understand what you're asking.
Spinball
09-07-2012, 07:06 AM
Thanks. Default for our forums is 30 posts per page.
In each of those locations I want to display an advert.
I'm guessing the best option is to eval a template? But a different one each time?
I'm guessing the best option is to eval a template? But a different one each time?
Well, I guess it depends on what your advert code is like. I guess what you want to do is have a plugin somehow get the html for each ad location and put it in variables that can be used in the postbit template, but how you get the html is up to you. If you want to make a template for formatting an ad you could od that, or you could just put the html in your plugin (if the ad is just an image, that might be the easiest way).
RyanFabbro
09-08-2012, 12:19 AM
why wouldn't my recomendation of if condition postcount work for this?
why wouldn't my recomendation of if condition postcount work for this?
Well, for one thing this doesn't work because you can't just list values like that:
<if condition="$post[postcount] == 1,15,29">
ad code
</if>
but maybe you were thinking of using in_array(), like:
<if condition="in_array($post[postcount], array(1,15,29))">
ad code
</if>
even so, I think $post[postcount] is the count of the post within the entire thread, and I think the OP asked about the posts on each page (so I think the condition above wouldn't show anything after the first page).
RyanFabbro
09-09-2012, 05:09 AM
i will test this really quick and post the results
ok OP this is what you should use, it just requires a simple code into postbit legacy no plugins required, kh was right i had the condition wrong but the idea was correct i used
<if condition="in_array($post[postcount], array(1,15,23))">
<center><h1>ad code</h1></center>
</if>
at the very bottom of postbit legacy, with threads set to display 10 per page, so each post 1 15 and 23 were on seperate pages, the adcode displayed correctly under each post i specified, no matter the page it was on
this method works great and i will be using it myself now too.
Well, I think spinball has 30 posts per page and wanted the ads to show up on each page. But now that I think about it, you could use ($post[postcount] % 30). And I think that is a better solution especially since it looks like the 'counter' variable isn't used if you're using threaded or hybrid mode to view the thread.
Spinball
09-10-2012, 01:54 PM
Thanks, all.
Nearly there.
Is there a GLOBALS variable which stores the number of posts being displayed? I.e. visible posts? I ask because I only want the system to 'prepare' the banners for the actual number which will be displayed.
I think 'perpage' should work. Edit: well, it will tell you the page size being used, but I don't think it will tell you if the current page is full. I don't see any way to do that offhand.
Spinball
09-12-2012, 09:06 AM
No perpage is 30 whatever number of replies there are.
Perhaps there isn't a value for the number of visible posts in a SHOWTHREAD page.
There doesn't seem to be, but there is a global $posts that is the result of the post query, so you could do something like:
global $db, $posts;
$rows = $db->num_rows($posts);
in a plugin, of course. There are other checks before posts are displayed so I guess there might be situations where there are more rows than posts, but I suppose if it works sometimes, that's better than not checking at all.
Simon Lloyd
09-14-2012, 08:42 PM
This is out of one of my ad modsif ($this->registry->options['google_ads_onoff'] && ($this->registry->options['advert_postbit_ad'] || $this->registry->options['advert_postbit_ad_rand']))
{
$this_script_off = explode('|',$this->registry->options['advert_this_script_off']);
if (!$this->registry->options['advert_this_script_off'] || !in_array(THIS_SCRIPT, $this_script_off))
{
$post[posts] = str_replace('|', '', $post[posts]);
if (!$this->registry->options['advert_maxuserpostcount'] || $post[posts] < $this->registry->options['advert_maxuserpostcount'])
{
$adtitle = $this->registry->options['advert_adtitle'];
if ($this->registry->options['advert_removeadstext'] && $this->registry->options['advert_removeadslink'])
{
$removeadstext = $this->registry->options['advert_removeadstext'];
$removeadslink = $this->registry->options['advert_removeadslink'];
$removeads = '<span style="float:' . $stylevar[right] . ';font-weight:normal;"><a href="' . $removeadslink . '">' . $removeadstext . '</a></span>';
}
if ($this->registry->options['advert_postbit_ad'])
{
$postbit_ad = $this->registry->options['advert_postbit_ad'];
}
else if ($this->registry->options['advert_postbit_ad_rand'])
{
$postbit_ad = explode('|',$this->registry->options['advert_postbit_ad_rand']);
$postbit_rand = array_rand($postbit_ad);
$postbit_ad = $postbit_ad[$postbit_rand];
}
if ($this->registry->options['advert_avatar'])
{
$advert_avatar = '<img src="' . $this->registry->options['advert_avatar'] . '" border="0" class="inlineimg" alt="" />';
}
if ($this->registry->options['legacypostbit'])
{
$advert_postbit_template = ad_postbit_legacy_end;
if ($this->registry->options['advert_postbitasuser'])
{
$postbit_advert_asuser = '<td class="alt2" width="175px"><div><a class="bigusername" href="javascript:;" rel="nofollow">' . $this->registry->options['bbtitle'] . '</a></div><div class="smallfont">Advertisement</div><div> <br />' . $advert_avatar . '</div></td>';
}
}
else
{
$advert_postbit_template = ad_postbit_below;
if ($this->registry->options['advert_postbitasuser'])
{
$postbit_advert_asuser = '<tr><td class="alt2" style="padding:0;"><table cellpadding="' . $stylevar[cellpadding] . '" cellspacing="' . $stylevar[cellpadding] . '" border="0" width="100%"><tr><td style="padding:0;">' . $advert_avatar . '</td><td nowrap="nowrap" width="100%" style="padding:0;"><div><a class="bigusername" href="javascript:;" rel="nofollow">' . $this->registry->options['bbtitle'] . '</a></div><div class="smallfont">Advertisement</div></td></tr></table></td></tr>';
}
}
$adusergroupinfo_on = explode('|',$this->registry->options['advert_Postbit_usergroups_on']);
$adusergroupinfo_off = explode('|',$this->registry->options['advert_Postbit_usergroups_off']);
if ((!$this->registry->options['advert_Postbit_usergroups_on'] || is_member_of($this->registry->userinfo, $adusergroupinfo_on)) && !is_member_of($this->registry->userinfo, $adusergroupinfo_off))
{
$aduserinfo_on = explode('|',$this->registry->options['advert_userids_on']);
$aduserinfo_off = explode('|',$this->registry->options['advert_userids_off']);
if ((!$this->registry->options['advert_userids_on'] || !in_array($userinfo[userid], $aduserinfo_on)) && in_array($userinfo[userid], $aduserinfo_off))
{
if ($this->registry->options['advert_pms_onoff'] && THIS_SCRIPT == 'private')
{
eval('$ad_postbit_below = "' . fetch_template('' . $advert_postbit_template . '') . '";');
}
else if ($this->registry->options['advert_announcements_onoff'] && THIS_SCRIPT == 'announcement')
{
$adforuminfo_on = explode('|',$this->registry->options['advert_forumids_on']);
$adforuminfo_off = explode('|',$this->registry->options['advert_forumids_off']);
if ((!$this->registry->options['advert_forumids_on'] || !in_array($foruminfo[forumid], $adforuminfo_on)) && in_array($foruminfo[forumid], $adforuminfo_off))
{
$adannouncementinfo_on = explode('|',$this->registry->options['advert_announcementids_on']);
$adannouncementinfo_off = explode('|',$this->registry->options['advert_announcementids_off']);
if ((!$this->registry->options['advert_announcementids_on'] || in_array($post[postid], $adannouncementinfo_on)) && !in_array($post[postid], $adannouncementinfo_off))
{
eval('$ad_postbit_below = "' . fetch_template('' . $advert_postbit_template . '') . '";');
}
}
}
else if ($this->registry->options['advert_posts_onoff'] && (THIS_SCRIPT == 'showthread' || THIS_SCRIPT == 'showpost'))
{
$adforuminfo_on = explode('|',$this->registry->options['advert_forumids_on']);
$adforuminfo_off = explode('|',$this->registry->options['advert_forumids_off']);
if ((!$this->registry->options['advert_forumids_on'] || in_array($thread[forumid], $adforuminfo_on)) && !in_array($thread[forumid], $adforuminfo_off))
{
$adthreadinfo_on = explode('|',$this->registry->options['advert_threadids_on']);
$adthreadinfo_off = explode('|',$this->registry->options['advert_threadids_off']);
if ((!$this->registry->options['advert_threadids_on'] || in_array($thread[threadid], $adthreadinfo_on)) && !in_array($thread[threadid], $adthreadinfo_off))
{
$post[posts] = str_replace('|', '', $post[posts]);
if ((!$this->registry->options['advert_minpostcount'] || $GLOBALS[threadinfo][replycount] >= ($this->registry->options['advert_minpostcount'] - 1)) && (!$this->registry->options['advert_maxuserpostcount'] || $post[posts] < $this->registry->options['advert_maxuserpostcount']))
{
$adxpostonly = explode('|',$this->registry->options['advert_xpostonly']);
if (($this->registry->options['advert_firstpost'] && $post[postcount] % $this->registry->options[maxposts] == 1) || ($this->registry->options['advert_lastpost'] && $post['islastshown']) || ($this->registry->options['advert_postcountrepeat'] && $post[postcount] % $this->registry->options['advert_postcountrepeat'] == 0) || ($this->registry->options['advert_xpostonly'] && $post[postcount] == in_array($post[postcount], $adxpostonly)))
{
eval('$ad_postbit_below = "' . fetch_template('' . $advert_postbit_template . '') . '";');
}
}
}
}
}
}
}
}
}
}
It may help you figure stuff out :)
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.