2013-08-28 122 views
0

在使用該設計的寶石我的Rails應用程序,它重定向回擁有這個代碼根:谷歌的Adwords不跟蹤轉換

<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-40000000-1', 'foo.com'); 
    ga('send', 'pageview'); 
    _gaq.push(['_trackPageview', '/home/articles/user_sign_up']); 
</script> 

在谷歌Analytics(分析)我有Destination設置爲:

Equals to /home/articles/user_sign_up 

但是,它沒有註冊爲轉換。有人能幫我弄清楚我做錯了什麼嗎?

的代碼出現在是/home/articles頁面的URL,所以我的目的是爲了嘗試覆蓋是谷歌認爲該URL使用:

_gaq.push(['_trackPageview', '/home/articles/user_sign_up']); 

回答

0

我認爲你是混合了新analytics.js語法與傳統的ga.js之一。 嘗試使用

ga('send', 'pageview', '/home/articles/user_sign_up'); 

the relevant documentation