Enable Demographics and Interests reports in Universal Analytics

后端 未结 3 1372
野趣味
野趣味 2021-02-05 07:12

I want to enable demographics and interests reports with the Universal Analytics tracking code.

The generated tracking code for my site looks like this:

         


        
3条回答
  •  后悔当初
    2021-02-05 07:33

    Since this question is still getting a lot of attention, I would like to point out that Universal Analytics is now on Phrase 3 and is able to generate demographics and interests reports. To track this information change your JavaScript code and add ga('require', 'displayfeatures'); after ga('create', 'UA-999999999-9', 'whatever.com') .

    ga('create', 'UA-999999999-9', 'whatever.com');
    ga('require', 'displayfeatures'); // enables demographics and interests reports
    ga('send', 'pageview');
    

提交回复
热议问题