Posts

Showing posts with the label adsense

Announcing the AdSense for Mobile Applications Beta

Google has announced the Google adsense for mobile applications beta that enables application developers to embed Google ads on iPhone and Android enabled smartphones. Google has set up a site where application developer can apply to the beta program. Read The Full Story. Source: GoogleBlog Related Post: Posted by: Nightfall®

Google Adsense Data on Analytics

Image
In my post on my other blog , I have posted about the soon to be linked Google adsense and Google Analytics accounts. Yesterday when I open my Google Adsense account there was already a link to my Google Analytics account. Clicking the link takes me to a set up wizard on how to link the two accounts. The set up wizard is fairly straightforward and the two account was linked in no time. You just have to paste some tracking codes to your site with Google Adsense ads. Once you have linked your accounts , just wait about 10 hours for the data to be updated. Then after that you can now easily view data from your adsense advertisements. To view your adsense data, Go to your Dashboard menu located on the left side of your window then click Content>Adsense. You can now view the following adsense data on your screen.: AdSense Revenue AdSense Revenue / 1000 Visits AdSense Ads Clicked AdSense Ads Clicked / Visit AdSense CTR AdSense eCPM AdSense Unit Impressions AdSense Unit Impressions / Vi...

How to Display Ads Conditionally on Blogger

If you want to show your ads conditionally. For example , say you want to show the ads only on its permalink , there is a way to do that. You will be using conditional statement like the one shown below. <b:if cond='data:blog.pageType == "item"'> From my previous post, we learn how to put ads inside the blog post. Here we want to display the ads, only when the blog post is viewed on its permalink. You can do that by using the code below. <b:if cond='data:blog.pageType == "item"'> The above code test what type of page is being displayed. To use that in our previous code you will do this. <b:if cond='data:blog.pageType == "item"'> <div id-"adsensecode" style="float:left;"> <!--replaced this with your adsense code--> </div> </b:if> <data:post.body/> The above code will display the ads only on the permalink of the post. If you want to display the code o...