Ability to add something between posts....

Register an Account
Reply
 
Thread Tools Display Modes
  #1 (permalink)  
Old 09-17-2006, 05:21 PM
Casual Pligger
 
Join Date: Mar 2006
Posts: 72
Hi there -

What's the possibility of adding a banner or something after a specific number of posts. Like, let's say I wanted an advertisement after the 4th post, then perhaps again 4 posts later?

I realize it's easy to do something after EVERY posts, but what about a staggered approach.

Thanks!
Reply With Quote
  #2 (permalink)  
Old 09-17-2006, 11:42 PM
Casual Pligger
 
Join Date: Jun 2006
Location: Dover, NH
Posts: 49
Nick,

Use the ever useful modulus operator (%). If you want to add a banner ad or Google ads under every post, you'd just add the code to "link_summary.tpl" under the code that displays the story. If you only want that code to display on every 4th post, then wrap it in an if statement that's checking $link_shakebox_index modulus of 4. Something like this:

Code:
{if $link_shakebox_index % 4 eq 0}
    //...
    // Add banner or Google code here
    //...
{/if}
In case you aren't a coder, modulus is like division but the return value is the remainder. So 7%4 returns 3. The above if statement is true every 4th post (including the very first post because $link_shakebox_index is zero based). So you'd get ads after posts 0, 4, 8, 12 etc.

The $link_shakebox_index variable is just the stories position on the current page.

Let me know if you have any trouble or need further explanation.

Last edited by Dravis; 09-17-2006 at 11:45 PM.
Reply With Quote
  #3 (permalink)  
Old 10-15-2006, 02:17 PM
New Pligger
 
Join Date: Sep 2006
Posts: 22
Thanks Dravis
Good info
it apears that google only adds the adds on the first story though
See www.mvptimes.com
Neale

Last edited by neale; 10-16-2006 at 01:38 PM.
Reply With Quote
  #4 (permalink)  
Old 05-04-2011, 08:38 AM
New Pligger
 
Join Date: Mar 2011
Posts: 1
Dear Dravis,
Thanks for your useful information.
i was looking for it for a long time.
You made my day
Thanks again.
cheers..
Reply With Quote
Reply

Thread Tools
Display Modes


Similar Threads
Thread Thread Starter Forum Replies Last Post
Changing how the posts are sorted on frontpage cbolseth Questions and Comments 6 03-29-2009 07:11 PM
ability to vote down a story? pxlpshr Questions and Comments 4 09-21-2008 03:51 PM
TimeLine to posts blast Questions and Comments 2 08-15-2007 07:45 PM
Delete Posts, Database Level, Feed Import Problem pligge Questions and Comments 1 05-27-2007 09:30 PM
What is the best way to deal with old posts in the queue revolver Questions and Comments 1 01-02-2007 11:37 PM


Pligg Modules and Pligg Templates from Pligg Pro Find support on the Pligg CMS Forum - 24 hours a day! Make a donation to support Pligg CMS development