Gossamer Forum
Home : Products : Gossamer Links : Development, Plugins and Globals :

Re: [Andy] Plugin - Random Adsense in Listings

Quote Reply
Re: [Andy] Plugin - Random Adsense in Listings In reply to
  

Andy wrote:
If you wanna do it every 5 links, for example - just re-use the same kinda code:
Code:
<%if row_num == 5 or row_num == 10 or row_num == 15 or row_num == 20 or row_num == 25%>
..show code here
<%endif%>

Obviously this assumes you have 25 records per page (as standard)
Cheers

I know this is an old message, but I've seen this come up a few times, and I know I've done something similar on several of my sites, but I used something like:

Code:
<%ifnot row_num % 5 %>
....show advert code here....
<%endif%>

So, until the remainder is "0" no ad will show. So, every 5th link, 5 % 5 = 0. 10%5=0,. etc will show an ad.
If you make the "5" a global, such as $skip_links, you can set the number of links per page and the number of links to skip from the admin interface, without editing the template again.

Code:
<%ifnot row_num % $skip_links %>
....show advert code here....
<%endif%>


PUGDOG� Enterprises, Inc.

The best way to contact me is to NOT use Email.
Please leave a PM here.
Subject Author Views Date
Thread Plugin - Random Adsense in Listings Piers1 13282 May 11, 2008, 10:15 AM
Thread Re: [Piers1] Plugin - Random Adsense in Listings
Andy 13212 May 11, 2008, 10:52 AM
Thread Re: [Andy] Plugin - Random Adsense in Listings
Piers1 13146 May 11, 2008, 2:16 PM
Post Re: [Piers1] Plugin - Random Adsense in Listings
Andy 13150 May 11, 2008, 11:25 PM
Thread Re: [Piers1] Plugin - Random Adsense in Listings
Andy 13196 May 12, 2008, 1:19 AM
Thread Re: [Andy] Plugin - Random Adsense in Listings
Piers1 13116 May 12, 2008, 1:34 AM
Post Re: [Piers1] Plugin - Random Adsense in Listings
Andy 13169 May 12, 2008, 1:36 AM
Thread Re: [Andy] Plugin - Random Adsense in Listings
Soren 12942 Jun 8, 2009, 12:12 PM
Thread Re: [Soren] Plugin - Random Adsense in Listings
Andy 13080 Jun 8, 2009, 12:43 PM
Thread Re: [Andy] Plugin - Random Adsense in Listings
Soren 13017 Jun 8, 2009, 3:39 PM
Thread Re: [Soren] Plugin - Random Adsense in Listings
Andy 13030 Jun 9, 2009, 12:18 AM
Thread Re: [Andy] Plugin - Random Adsense in Listings
VishalT 12950 Jun 9, 2009, 1:46 AM
Thread Re: [SWDevil.Com] Plugin - Random Adsense in Listings
Andy 13003 Jun 9, 2009, 2:38 AM
Thread Re: [Andy] Plugin - Random Adsense in Listings
Soren 13000 Jun 9, 2009, 3:50 AM
Thread Re: [Soren] Plugin - Random Adsense in Listings
Andy 12962 Jun 9, 2009, 3:52 AM
Post Re: [Andy] Plugin - Random Adsense in Listings
Soren 12936 Jun 9, 2009, 4:46 AM
Post Re: [Andy] Plugin - Random Adsense in Listings
pugdog 12080 Aug 5, 2010, 11:03 PM