Is your website affected by invalid clicks on your AdSense ads? It might be due to mistake or some of your haters might be doing this.
Have you searched for the solutions and haven't found any? Ok, now the time is gone, you can have control on invalid clicks on the ads on your website.
In this article, I am going to tell you how you can add a functionality to detect invalid clicks on your AdSense ads.
You might have seen this functionality on many websites and you want to implement it on your website and you are not finding the exact source which teaches you to set up Adsense invalid click protection on your blog or website.
We can add this functionality using different programming languages but as you know that in blogger only JavaScript is supported so we are going to use JavaScript to add invalid click detection functionality in our website.
We will see how we can implement this functionality into our website this article is all about it but before that let's talk about some impacts of invalid clicks.
You must change these configurations accordingly.
Have you searched for the solutions and haven't found any? Ok, now the time is gone, you can have control on invalid clicks on the ads on your website.
In this article, I am going to tell you how you can add a functionality to detect invalid clicks on your AdSense ads.
You might have seen this functionality on many websites and you want to implement it on your website and you are not finding the exact source which teaches you to set up Adsense invalid click protection on your blog or website.
What about WordPress users?
You can find plugins to do so but if you can't find any, don't worry you can follow the same steps if you are using WordPress or any other CMS.We can add this functionality using different programming languages but as you know that in blogger only JavaScript is supported so we are going to use JavaScript to add invalid click detection functionality in our website.
We will see how we can implement this functionality into our website this article is all about it but before that let's talk about some impacts of invalid clicks.
What are the impacts of invalid clicks?
- Disabling of AdSense account
- Mostly your ads are limited
- Your earnings are disturbed
How this script works?
This script just takes control of the iframe as Adsense ads are shown in iframes, and detect the user interaction on iframes that contains Adsense ads and count the number of clicks and store them in cookies in user browser.Setting Up Steps:
- Go to Blogger Dashboard
- Go to Theme/Template Section
- Click Edit HTML
- Now Search for </body>
- Now copy the code provided below and add it before the tag which we have searched in step 4.
- Now wrap your AdSense ad code in an element with CUSTOM_TAG_ID, it must be the same as in the script above.
- Save Theme/Template and you are done.
To search anything in blogger template section press Ctrl+F and then type term to search and press enter.
<script>
var limitClick = 5; // Maximum Clicks per User
var idAdsense = 'CUSTOM_TAG_ID'; //Adsense Ad Container Element ID
</script>
<script async='async' src='//cdn.jsdelivr.net/npm/blogspot-clickfraud@0.0.4/index.min.js'/>
Your ad code lookes like this after wrapping.<div id="CUSTOM_TAG_ID">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<ins class="adsbygoogle"
style="display:block"
data-ad-client="ca-pub-XXXXXXXXXXXXXXXX"
data-ad-slot="XXXXXXXXXX"
data-ad-format="auto"
data-full-width-responsive="true"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
Configurations:
Variable | Description |
---|---|
limitClick | Number of click per user can do. ( Default 5 ) |
idAdsense | ID of Adsnese adcode wrapper element. |