The solution is to modify the template in com_fireboard/template/default/message.php
You need to change these lines:
| Code: |
<?php
if (mosCountModules('fb_msg_1'))
{
?>
<div class = "fb_msg_1">
<?php
mosLoadModules('fb_msg_1', -2);
?>
</div>
<?php
}
?>
|
To this
| Code: |
<?php
if($mmm == 1) {
?>
<div class = "fb_msg_1">
<!--<?php
//mosLoadModules('fb_msg_1', -2);
//?>-->
</div>
//START GOOGLE ADSENSE CODE
<script type="text/javascript"><!--
google_ad_client = "<google publisher id>";
/* google_ads */
google_ad_slot = "<adsense id>";
google_ad_width = 468;
google_ad_height = 60;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
//END GOOGLE ADSENSE CODE
<?php } ?>
|
You'll need to replace the Google Adsense code with whatever is produced by Google adsense.
Hope this helps
Darragh