http://www.qualitysheetmusic.com/modules.php?name=Forums Thanks. It works on the index_body.tpl page. I added it on the viewforum_body.tpl and viewtopic_body.tpl pages, but they don't show.
Are you aware that Adsense has a great support tool. In your case I would like you to take a look at Why are ads not appearing on my site? or maybe this will help How quickly will Google ads start appearing on my site? . Happy reading.
Diddy try this: First, add the code into either overall_header.tpl or overall_footer.tpl instead of the three pages you've used so far -- makes it a lot easier to change the settings. Then, do this to avoid having the ads appear on registration and confirmation pages, contrary to the AdSense TOS: Open page_header.php and find: if ( !$userdata['session_logged_in'] ) Code (markup): before that add: // google_switch if (!stristr($_SERVER['PHP_SELF'], "login.php") AND !stristr($_SERVER['PHP_SELF'], "profile.php") ) { $template->assign_block_vars('switch_adsense', array()); } Code (markup): This puts a switch in your template available that excludes your Adsense Code from the login and profile pages. Open your template page where you have placed your Adsense code(usually overall_header.tpl) and use the switch like this: <!-- BEGIN switch_adsense --> Your Adsense Java Script code here <!-- END switch_adsense --> Code (markup): source: http://www.vierstra.com/forum/forum-subject.php/t/2754