Hi Developers at Nano M Husen, This is a notification that your Google Play Publisher account has been terminated. Publishing Status Status: Account Terminated Your Developer account remains terminated due to prior violations of the Developer Program Policies and Developer Distribution Agreement by this or associated, previously terminated Google Play Developer accounts. Please do not attempt to register a new developer account. Any new accounts will be closed, and your developer registration fee will not be refunded. View policy status Issue found: High Risk Behavior We have identified a pattern of high risk or abuse associated with your Developer Account and are taking this action pursuant to the Policy Coverage policy. About the Policy Coverage policy We don’t allow apps or app content that undermine user trust in the Google Play ecosystem. In assessing whether to include or remove apps from Google Play, we consider a number of factors including, but not limited to, a pattern of harmful behavior or high risk of abuse. We identify risk of abuse including, but not limited to, items such as app- and developer-specific complaints, news reporting, previous violation history, user feedback, and use of popular brands, characters, and other assets. Submit an Appeal Please read through this page to understand your policy violation. If you believe our decision may be incorrect, you can appeal. It may take up to 7 days to receive a response, or longer in exceptional cases. Please do not attempt to register a new developer account. We will not be restoring your account at this time. The Google Play TeamI've filed an appeal, but it was rejected. I'm very frustrated; my years-long struggle is now over. I feel this is very unfair to me, but there's nothing I can do. I surrender, and may God repay Google for its cruelty to me.
Free Tutorial For You
How to customize and optimized your blogger or website
My google play console account was terminated
How to fix CLS issue in your blog or web ?
Fixing CLS issues is a big deal. That's because most of your competitors won't fix CLS problems and as a result won't rank well compared to those who fix CLS problems. So let's learn to understand the real CLS problem, and then fix the CLS problem.
Want to know how to fix CLS? Your visitors too! Actually, they don't care how to fix CLS - they care that it didn't happen.
I recently fixed a bad case of CLS and documented the process. Check out my hands-on demo and explanation or continue reading below.
What is CLS ?
Acceptable CLS Limits
- Good is <= .1
- Needs improvement is > .1 and <= .25
- And everything greater than .25 you need to get your shit together
How to Find CLS Issue
How to Solve CLS Issue
<img src="/cat.jpg">
<img src="/cat.jpg" width="100%" height="450">
How to Lazy Load Video YouTube Embed in Blogger?
Have you ever thought about how important it is to implement lazy loading on YouTube videos embedded in website/blog content? Yes, you are right, the application of lazy loading on youtube videos embedded on the website is certainly very important, because it will keep the optimation website's performance.
Therefore this time I will share the lazy load youtube video script to blogger friends for free. This is the best script for lazy loading youtube videos and has been proven to be able to maintain optimal website/blog performance even though there are many embedded youtube videos.
Don't believe it yet? Take a look at the comparison of the results of the following analysis before and after using the lazy load youtube video script.
I've done 3 website performance tests.
1. Test website performance without embed youtube video.
2. Test website performance with embed youtube video, but without lazy load script
3. Test website performance with embed youtube video and lazy load script.
How are you interested in using lazy load youtube videos? If so, follow the steps on how to install the lazy load youtube video script below.
Step 1. Go to your blogger admin dashboard. Select "Post" menu >> Fill the post title >> select "HTML View". And Copy this HTML Code :
<div class="youtube-iframe-container">
<iframe class="youtube-video iframe-video cordial-lazyload"
data-src="https://www.youtube.com/embed/xxxxxx"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
Change red text color with your video embed id. and Publish.
Step 2. In your blogger admin dashboard. Select "Theme" menu >> select down arrow beside "Customize" then select "Edit HTML".
Step 3. In the box press "CTRL + F" to search type "</skin>" . Copy code bellow before "</skin>
.youtube-iframe-container {
position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%;
}
.iframe-video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
and Save theme.
Step 4. In your blogger admin dashboard. Select "Layout" menu >> in the navbar select "Add Widget" then select "HTML/Javascript". And copy javascript code below :
<script type="text/javascript">
document.addEventListener("DOMContentLoaded", function () {
if ("IntersectionObserver" in window) {
var iframes = document.querySelectorAll("iframe.cordial-lazyload");
var iframeObserver = new IntersectionObserver(function (entries, observer) {
entries.forEach(function (entry) {
if (entry.isIntersecting && entry.target.src.length == 0) {
entry.target.src = entry.target.dataset.src;
iframeObserver.unobserve(entry.target);
}
});
});
iframes.forEach(function (iframe) {
iframeObserver.observe(iframe);
});
} else {
var iframes = document.querySelector('iframe.cordial-lazyload');
for (var i = 0; i < iframes.length; i++) {
if (lazyVids[i].getAttribute('data-src')) {
lazyVids[i].setAttribute('src', lazyVids[i].getAttribute('data-src'));
}
}
}
})
</script>
Then Save the widget.
And Finish, now you can test your blog/web performance with ligthouse.
How to solve the LCP Issue/ problem on core web vitals due to google adsense ads?
Performance blogs or websites will eventually drop when advertised by third parties such as ads on Google Adsense and other digital advertising. To avoid that, a special method is needed to load ads so that loading or website performance is maintained.
Generally the method used to load ads so as not to affect the performance of the website/blog is to apply lazy load to fish (adsense), therefore here I will give a fairly complete review of lazy load adsense.
You can solved the LCP Issue/ problem on core web vitals due to google adsense ads with Lazy Load Adsense.
Without Lazy Load Adsense your LCP can be poor or higher than 4s. The best LCP is lower than 2,5 s.
What is Lazy Load Adsense?
Why Should You Use Lazy Load Adsense?
- Third party webfont load
- JavaScript execution time
- Main-thread work
- Impact of third party code, etc
Instructions for Using Lazy Load Adsense
<script async="async" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"/>
//or a new version of the javascript library
<script async="async" data-ad-client="ca-pub-1234567890123456" src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"/>
//or updated version
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-4209467777280582" crossorigin="anonymous"></script>
To :
<script type="text/javascript">//<![CDATA[
var lazyloadads=false;window.addEventListener("scroll",function(){(0!=document.documentElement.scrollTop&&false===lazyloadads||0!=document.body.scrollTop&&false===lazyloadads)&&(!function(){var e=document.createElement("script");e.type="text/javascript",e.async=true,e.src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-420946777728xxxx";var a=document.getElementsByTagName("script")[0];a.parentNode.insertBefore(e,a)}(),lazyloadads=true)},true);
//]]></script>
How the Lazy Load Adsense Script Works ?
Lazy Load Adsense From Adsense Policy Side
For detail step by step yo can watch this video below.
Reference
Featured Post
My google play console account was terminated
A few days ago I received a notification email from Google that my Play Console account has been terminated. The message content is as below...