Showing posts with label AdSense. Show all posts
Showing posts with label AdSense. Show all posts

Tuesday, April 13, 2010

How to Add AdSense Ads to Google Buzz

Since I have post that Google Ads Start appearing in Google buzz I left a question that how to make it happened. So lets see How you can add Google AdSense ads to Google Buzz. Of course if you have lots of crazzy buzz followers then you can earn some extra from AdSense.


1. Assume that you have a blog that updates regularly.

2. Burn the feed for the blog

Login or create a new account with feedburner.google and burn the feed.


3. Add AdSense Ads to the feed

Login to your AdSense account and go to AdSense Ad Setup tab and Select AdSense for Feed. This is a small AdSense tip I use to display ads top of the post so it is more likely to click on the ads.




4. Add the feed to Google Buzz to automatically buzz






Now when you do a new post in your blog it will automatically appear in your Google Buzz and surprisingly it will buzz with Google Adsense ads.

Thursday, March 11, 2010

AdSense Ads in Google Buzz

Today I have notice Google AdSense ads with Google Buzz. Also, it is just using the same RSS settings used for the blog. If you have more buzz followers this might be a good chance to earn extra money.

If you have blog with RSS enabled you can set up auto buzz. Click on the Connected Sites and Add the blogs, flicker and twitter accounts direct to Google Buzz.

Monday, October 5, 2009

She told me how to make extra money

SheToldMe is another cool site that share AdSense revenue you. I recently registered to this site which was referred by letblog. There are so many AdSense revenue sharing websites and it is quite handy when you really do not get much income specially at the beginning. It will keep positive statistic for you. Plus there are couple of more advantages with shetoldme website as a blogmaster or webmaster...

Even though it says she told me not only girls but guys can join it as well. Once you registered you can submitting links to it. What they call it is "Create Scoop". Providing the URL and the 10-100 characters long title and 200-5000 description, category and related tags you can submit the links. Once you submit the link it will start publishing the content and base on the user rating it will start going up in the ladder. But under upcoming you can always find your newly submitted links (Scoops).

If you have provided the AdSense publisher ID to SheToldMe it will start displaying AdSense ads next to your content and it will start sharing all the revenue it gets from valid clicks.

Forget about the AdSense revenue. It is a good way to build back links to your website or blog by Scooping all the interesting links with SheToldMe. Also good way to get some extra visitors on your way as well.

If is 100% Free to register and cool site that you can have fun, income, back links and visitors. Give it a try and see how it is going to work out for you.

Join SheToldMe.com with crazzycool as your referrer!

Sunday, August 2, 2009

Add third party ads in the middle of blogger blog post

We've been asked how to add third party ads in the middle of the blog post. It is quite simple as we have been already discuss how to add AdSense ads in the middle of a blog post. Simple change can allow you to add third party ads or any other content in the middle of the blog post.

Before you start any thing remember to back up your template in case something goes wrong.

From the previous post we can get the code that we used to add AdSense ads in the middle of the post.

<div style='clear:both; float:right;  margin-left:5px;'>
<!-- Your AdSense code here -->
<b:if cond='data:post.includeAd'>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</b:if>
</div>


Now you want to apply third part ads or some other content. Lets make the changes.


<div style='clear:both; float:right; margin-left:5px;'>
<!-- Third party Ad code goes here -->

</div>


Add your third party ad code just after the Third party Ad code goes here. Even a JavaScript should work without any problem. However, for some reason AdSense code directly from AdSense code generator does not work. All the other codes work fine with this way.

Monday, July 20, 2009

Google AdSense ads In the middle of Blogger Post

When you place Google Adsense Ads in the middle of the blog posts you have to be little careful that not to confuse the reader. Google does not stop webmasters or bloggers using Ads in the middle of the post or just after the Title. What Adsense Blog says is...

Ads shouldn't be placed under a title or section heading in a way that implies that the ads are not ads.

Previously we have gone through a simple way to add Google AdSense Ads in the middle of the post just after the title using CSS and DIV tags. If you want to change it a little bit and display the ads after couple of lines of the post you can apply this simple CSS and DIV tag.

First of all back up your blogger template as a good practice and please do not blame me if you did not back up. You can read the previous post to get a idea about Google Ads in the middle in details as we more focus on putting couple of lines before the Google Ads.
After backing up your blogger template enable Google Ads to display after each posts.
Search for post-body entry-content (Google chrome and FireFox 3.5 support searching text inside the text box)
Copy the following code between..post-body entry-content and data:post.body div tags (Third red box in the picture.

<!--Add the lines before the Google Ads-->
<!--Change height 20px base on the number of lines you want to change-->
<div style='background-color: transparent; float: left; width: 1px; height: 50px; overflow: hidden;' />
<div style='clear:both; float:left; margin-right:5px; margin-top: 5px;'>
<!--Ads will display only in Post page not in home page-->
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<b:if cond='data:post.includeAd'>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</b:if>
</b:if>
</div>


Isn't it simple and you can change the height of first div tag under styles to changes number of lines before the Google AdSense Ads.

If you have any problems or comments you are always welcome to share it with us. We will try to help you as much as we can.

Saturday, July 4, 2009

Google Ads In the middle of Blogger Post

Google AdSense Ads in the middle of the blogger post. You may already know that Blogger Blog dose not support Google AdSense Ads in the middle of the post. Therefore you need to apply a little hack to the blogger template. In previous post we have gone through a bit complicated method.

Before we start applying the hack make sure you backup your blogger template.

Go to Layout and then to Edit HTML you will find a link to Download Full Template. Click on the link to download the template back up and save it in a secure place.

Another simple method I use to back up the Blogger template is to check the Expand Widget Templates and then copy the whole HTML code in the box to Notepad and save it in a secure place.

After backup blogger template you have to enable Google Ads between posts.

Go to Layout and then to Page Element and click the edit link on the Blog Posts element. Check Show Ads Between Post check box. Then configure inline Ads that suits your template. (What colour combinations are best for my site?).

Main reason to enable this feature is to get the blogger post compatible AdSense to code. Normal AdSense code does not work in the middle of the blogger post as Blogger post body dose not support Java Scripts.

Step by step guide to add Google AdSense Ads in the middle of the blogger post.

Go to Layout and then to Edit HTML and check the Expand Widget Templates.

Search the following code line in the HTML. (I would use Google Chrome to Search (CTR+F) this HTML code as it search inside the text box)



<data:post.body/>


Copy and paste the following code just before the above code line.
<div style='clear:both; float:right;  margin-left:5px;'>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<!-- Your AdSense code here -->
<b:if cond='data:post.includeAd'>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</b:if>
</b:if>
</div>

Save Template and check out your blog and the Google Ads Should be display inside the blog post.

PS: I forgot to tell you that I have add a extra line that will not display any adds when you are in the home page. It only display the ads when you are in the Post page. If you would like to show adds on the home page you can use the following chord.



<div style='clear:both; float:right; margin-left:5px;'>
<!-- Your AdSense code here -->
<b:if cond='data:post.includeAd'>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</b:if>
</div>


Update:
How to remove the Adsense Ads just after the post.
When you enable Ads after the post from Blogger it will show ads in the middle of the post as well at the end of the post. Find the followinf code in the Edit Html ( Layout > Edit Html > Check Expand Widget Template check box)



<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<b:include data='post' name='comments'/>
</b:if>
<b:if cond='data:post.includeAd'>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</b:if>
<b:if cond='data:post.trackLatency'>
<data:post.latencyJs/>
</b:if>
</b:loop>
<data:adEnd/>
</div>


Remove or comment out the code that displaying the Ads.

<b:if cond='data:post.includeAd'>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</b:if>

You can basically replace the above code with the follwoing code.


<b:include data='post' name='post'/>
<b:if cond='data:blog.pageType == &quot;item&quot;'>
<b:include data='post' name='comments'/>
</b:if>
<b:if cond='data:post.trackLatency'>
<data:post.latencyJs/>
</b:if>
</b:loop>
<data:adEnd/>
</div>


Hope this will help.If you come cross any problem or any improvements share it with us.

Saturday, March 28, 2009

[Adsense] Make Money With Adsense

If you are a blogger user you might have already notice that there are some changes in the dashboard. New link is added called Monetize.

Link Monetize will take you to a page where you can easily place AdSense Ads on your blog according to three predefine templates. Isn't that easy? 

If you are quite new to blogger or AdSense you can use Google recommendation and see how much you can earn from Google AdSense. Still you have flexibility to change your template as you want. What  do you think about this new feature.

Thursday, February 19, 2009

[Adsense] Introducing Adsense for Domains


We have been talking about parking your unused domains and get a small revenue out of them. Now you can park your domains  under Google AdSense. Ads for your website or blog, Ads for RSS feed, Ads with Search, Ads with YouTube Videos, Ads for  Mobile websites and now Ads for Parked domains can be manage through one AdSense Login

This would be a great opportunity to increase your AdSense revenue.  We hope to find out some hacks and tricks related to AdSense for domains in future.

Thursday, February 5, 2009

[BlogSpot]Add Google Adsense Adds in the middle of the Blogger post

Note: I strongly recomend you to back up your template before start editing your blog template from Backup/Restore Template under Layout.

First of all thank you very much Daniele Perilli for letting me use his code which allows you to use Adsense ads in the middle of your Blogger Blog post. Adsense In the Middle Blog  explain simple but effective way to place Adsense or any other Ads network add in the middle of each post in two ways. One is manually telling in each post where to display the Ad and second method is automatically add the Ads in the middle of each post. As I am too lazy to define in each post I likes the second method more. But I needed couple things to be changed. 
                       In main page after Displaying three Adsense (Adsense allows only three ads per page) it start displaying blank spaces in middle of other posts. 
                       Sometimes it did display part of HTML code ( Specially When there is any image ) in the post and image got disappear. 
                       Sometimes I have noticed it display the ads without completing the sentence. I wanted ads to be displayed after end of a sentence.
                       
First let us see how can we add these simple hacks to the Ads in the middle of Blogger post hack. 
                      I simply removed the Adsense Ads in the middle of the post when it display on main page. That will keep your main page nice and clean. What I did was I will display ads in the middle of the post when it display as a single post. Still If you like to display some ads I would recommend to enable ads after each post from Layout > Page Element > Click on Edit link in the Blog Posts Element. 

Then go to Edit HTML under Layout and tick Expand Widgets check box and find the tag and replace with following code.


<div expr:id='"aim1" + data:post.id'/>

<div style='clear:both; margin:10px 0'>
<b:if cond='data:blog.pageType == "item"'>
<!-- Your AdSense code here -->
<b:if cond='data:post.includeAd'>
<data:adEnd/>
<data:adCode/>
<data:adStart/>
</b:if>
</b:if>
</div>

<div expr:id='"aim2" + data:post.id'>
<data:post.body/>
</div>

<script type='text/javascript'>
var obj0=document.getElementById("aim1<data:post.id/>");
var obj1=document.getElementById("aim2<data:post.id/>");
var s=obj1.innerHTML;
var t=s.substr(0,s.length/2);
var r=t.lastIndexOf(". ");
if(r&gt;0) {obj0.innerHTML=s.substr(0,r+ 1);obj1.innerHTML=s.substr(r+ 2);}
</script>

Then click Save Template and check how Adsense Ads will display in middle of each post when you go into a post. Once again I am really thank full to Daniele for letting me update original  Adsense In the middle of Blogger Post code. I hope to discuss more hacks and tricks you can do with this in future. Please let me know what you think about it and ways you would like to display Adsense Ads and also if you come cross any bug or cool ideas share with us.

Saturday, January 10, 2009

Integrate your AdSense account with Google Analytics

Do you want to integrate your AdSense account with Google Analytics for have a clear picture of how your Google AdSense ads perform. At the movement it will not be in every account. If you do not find it in your AdSense account then visit AdSense Blog and fill out the interest form and this feature will be enabled for you withing couple of days. After this feature is enabled you can see a link to link two accounts when you log into AdSense account. 

It will display all the website or blogs you have added to Analytics account to be linked with
 AdSense
If you select more than two accounts it will give a tracking code to be paste for other accounts.


 After Confirming it will take around couple of hours to display new statistics.


After linking AdSense with Analytics first time if you require to change any settings then you have to Analytics Settings page and new link "Edit AdSense linking settings" 
Blog Widget by LinkWithin