-
Another Way to add Adsense Code in phpBB3
Posted on April 6th, 2009 No commentsHi,
I found another easy way to include Google Adsense in phpBB3. The full details can be found at
http://www.binaryturf.com/how-to-add-adsense-to-phpbb3/
To include Google Adsense in header the steps are as follows;
Administration Control Panel> Style > Template > Edit Prosilver > Select overall_header.html
Find
Tip: This may be a partial find and not the whole line.Code:Select All
- Code: Select all
<a name="start_here"></a>
Add before
Tip: Add these lines on a new blank line before the preceding line(s) to find.- Code: Select all
<div class="adsense" style="width:728px;margin:auto;float:center">
<script type="text/javascript">
google_ad_client = "your-adsense-pub-id";
/* 728×90, created 9/31/08 */
google_ad_slot = "your-slot-id";
google_ad_width = 728;
google_ad_height = 90;</script>
<script type=”text/javascript”
src=”http://pagead2.googlesyndication.com/pagead/show_ads.js”>
</script>
</div>
——————————————————————————————————
To include at the footer of the forum the step are as follows:
Go to > Administration Control Panel> Style > Template > Edit Prosilver > Select overall_footer.html
Find
Tip: This may be a partial find and not the whole line.Code:Select All
- Code: Select all
</div>
Add after
Tip: Add these lines on a new blank line after the preceding line(s) to find.- Code: Select all
<div class="adsense" style="width:728px;margin:auto;float:center">
<script type="text/javascript">
google_ad_client = "your-adsense-pub-id";
/* 728×90, created 9/31/08 */
google_ad_slot = "your-slot-id";
google_ad_width = 728;
google_ad_height = 90;</script>
<script type=”text/javascript”
src=”http://pagead2.googlesyndication.com/pagead/show_ads.js”>
</script>
</div>


