2

1 ページに 2 つの Google アナリティクス イベントがあります。必要な Google アナリティクス イベントは 1 つだけです。とにかく削除できるので、そのページを開くと、Google アナリティクスは 1 つしか表示されません。

<script type="text/javascript">
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
    _gaq.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);
    })();
</script>

と、

<script type=text/java-script>
    var _gaq = _gaq || [];
    _gaq.push(['_setAccount', 'UA-XXXXXXXX-1']);
    _gaq.push(['_trackPageview']);
    _gaq.push(['_addTrans','7000004','380194','99.99','7.27','20','Richfield','MN','US']);
    _gaq.push(['_addItem','7000004','38361','Power Shovel (38361)','','99.99','1']);
    _gaq.push(['_trackTrans']); //submits transaction to the Analytics servers
    (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);
    })();
</script>

2つ目は削除してほしいです。

どうもありがとう

4

1 に答える 1