我正在尝试弄清楚如何使用adblock插件跟踪人员。 例如,Adblock Plus设置div显示:无。
我在Google Analytics中创建了自定义维度。
我没有错误,但感觉不会像我打算那样工作:
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-xxxxxx', 'domain.de');
ga('send', 'pageview');
if ($(".werbung").css('display') == 'none')
{
ga('set', 'Adblock', 'Ja');
}
else
{
ga('set', 'Adblock', 'Nein');
}
</script>
任何帮助表示感谢。
答案 0 :(得分:0)
有几种方法可以处理这种情况。其中一个与您在提供的示例中提到的完全相同,但您可以在此处查看其他几个:http://technicalmarketing.io/analytics/track-how-many-of-your-visitors-use-ad-block-style-plugins-in-google-analytics/