How to Add Google AdSense to a Dolphin Blog
Adding JavaScript based code via TinyMCE is problematic.
What you need to do is to make a blog post entry as you normally would but then go via the backend using phpMyAdmin to update the entry. You would need to manually add your Google Adsense code.
Instructions
On the assumption you've made your blog post. You need to find the entry in your database. You will need to find your entry in the "BlogPosts" table.
When you find it, just paste your Google AdSense code where you want it to appear.
Remember, you may need to wait a few minutes until the ad shows up.
And voila! It's done.
Here's Another Way to Add Google Adsense to a Blog
You can add JavaScript in the page_49.html template. The file is located in the templates/tmpl_uni?
You will see this code:
__include _header.html__
<div class="clear_both"></div>
__page_main_code__
<div class="clear_both"></div>
__include _footer.html__
You can add your ad like this:
__include _header.html__
__page_main_code__
<div class="clear_both"></div>
<script type="text/javascript"><!--
google_ad_client = "pub-0915650683949696";
//336x280, created 1/7/08
google_ad_slot = "8318103481";
google_ad_width = 336;
google_ad_height = 280;
//--></script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<div class="clear_both"></div>
__include _footer.html__
The above example will put an add at the bottom of your blog page.
Please try it out and let me know how it works.
...sip...
Download(s)
N/A
Addendum
N/A

|