Hello, i am new to this forum and i am trying to insert Adsense code between albums.
I found this old thread:
http://www.zenphoto.org/support/topic.php?id=32466 but it is three years old.
Can you help me please to adapt fretzl Member Staff Forum old code to new version 1.4.13 ?
In album.php file the unmodified code is:
`
<?php while (next_album()): ?>
<?php printAlbumDate(""); ?><?php printAlbumDesc(); ?>
<?php endwhile; ?>
`
Comments
Here's the code that should work for the basic theme:
`
<?php $count = ''; ?>
<?php while (next_album()): ?>
<?php if($count==2) { ?>
your Adsense code here
<?php } ?>" title="<?php echo gettext('View album:'); ?> <?php printAnnotatedAlbumTitle(); ?>"><?php printAlbumThumbImage(getAnnotatedAlbumTitle()); ?>
" title="<?php echo gettext('View album:'); ?> <?php printAnnotatedAlbumTitle(); ?>"><?php printAlbumTitle(); ?>
<?php printAlbumDate(""); ?><?php $count++; ?>
<?php endwhile; ?>
`
I want to add Adsense code too between images thumbails in album.php
If i am not wrong code to modify is:
`
<?php while (next_image()): ?>
" title="<?php printBareImageTitle(); ?>">
<?php printImageThumb(getAnnotatedImageTitle()); ?>
<?php endwhile; ?>
`
Can i ask this code too ? Please i would be very grateful
That would be a lot of ads that surely will not keep visitors to your site. You probably want one place of ads on the page. So you probably want to add it outsde the both loops instead? OR as the old code suggest limit the display by checking the loop count.
<?php $count = ''; ?>
<?php while (next_image()): ?>
<?php if($count==2) { ?>
your Adsense code here
<?php } ?>" title="<?php printBareImageTitle(); ?>">
<?php printImageThumb(getAnnotatedImageTitle()); ?>
<?php $count++; ?>
<?php endwhile; ?>
`
Depending on where (i.e. after which thumbnail) you want the Adsense code to appear you will probably have to change the number in `if($count==2)`
This request can be marked as Solved, thank you very much for the support