1

私の目標は、各 Web サイトに 2 つのトラッキングを設定することでした。1 つは Web サイトに固有のもので、もう 1 つはネットワークに属する Web サイトのデータを集約するものです。

here is the code i implemented :

// UA-XXXXXXXX-1 = Global tracking
// UA-XXXXXXXX-2 = Specific tracking

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
_gaq.push(["_setCustomVar", 1, "Type", "Value_Type", 1]);
_gaq.push(['_trackPageview']);
var _gaq2 = _gaq2 || [];
_gaq2.push(['_setAccount', 'UA-XXXXXXXX-2']);
_gaq2.push(['_trackPageview']);

(function() {
    var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
    ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
    var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

This code is not working : specific tracking is not working. Any idea why ?
Thanks in advance
4

1 に答える 1

3

コードは次のようになります。

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
_gaq.push(["_setCustomVar", 1, "Type", "Value_Type", 1]);
_gaq.push(['_trackPageview']);

_gaq.push(['SPECIFIC._setAccount', 'UA-XXXXXXXX-2']);
_gaq.push(['SPECIFIC._trackPageview']);
于 2013-03-14T12:33:38.660 に答える