2
GA 맞춤 변수에 문제가 있습니다. HTML 소스에 다음 코드 스 니펫을 삽입했습니다. 페이지맞춤 변수 GA의 거래 수 문제
_gaq.push(['_setCustomVar', 3, 'AgencyType', '<Agency Type Sample>', 3]);
전체 JS 코드 :
var _gaq = _gaq || [];
_gaq.push(['_setAccount', '<account #>']);
_gaq.push(['_setCustomVar', 3, 'AgencyType', '<Agency Type Sample>', 3]);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_setAllowHash', false]);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://' : 'http://') + 'stats.g.doubleclick.net/dc.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();`
이 코드는 젠토의 모든 페이지에 포함되어 있습니다. 그러나 나는 내 웹 로그 분석을 확인 할 때 트랜잭션을 열 보면 당신은 (39) (66)의 트랜잭션이 있다는 것을 알 수
그것은 나에게 다음의 결과를 보여줍니다. 그래서 저는 왜 이런 일이 일어 났는지 묻고 싶습니다.
는 답변 주셔서 감사합니다. – Nick