Tổng hợp cách Fix lỗi liên quan đến Google Adsense
https://itlovedesign.blogspot.com/2017/03/tong-hop-cach-fix-loi-lien-quan-en.html
Lỗi: Attribute name "async" associated with an element type "script" must be followed by the ' = ' character
Để sửa lỗi trên bạn chỉ cần thêm dòng như sau vào code: async="async"
Ví dụ cụ thể, code Google Adsense đang như thế này:
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- MLTC foot post 336v280 -->
<ins class="adsbygoogle"
style="display:inline-block;width:336px;height:280px"
data-ad-client="ca-pub-712987019925812345"
data-ad-slot="6386538945"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
Bạn phải sửa lại thành như thế này thì khi chèn vào mới không bị lỗi:
<script async="async" src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- MLTC foot post 336v280 -->
<ins class="adsbygoogle"
style="display:inline-block;width:336px;height:280px"
data-ad-client="ca-pub-712987019925812345"
data-ad-slot="6386538945"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
Tiếp tục cập nhật ....