The default of this module includes Adsense adverts too many times. I've written a post with details here about how to fix it:
The default of this module includes Adsense adverts too many times. I've written a post with details here about how to fix it:
The plugin inject code, it cannot know if it's adesense code or whatever. So the patch cannot be added to the plugin. Better is to use php code in the code block to check the number of inclusions.
<?
global $ccc;
if (!$ccc) $ccc=0;
$ccc++;
if ($ccc < 3) {
?>
xxx
<?
}
?>
This topic has been closed to new replies.