您好,匿名用户
随意问技术百科期待您的加入

Google Analytics如何统计搜索引擎进入本站最终提交的订单?

0 投票

程序是Ecshop,订单的提交页面地址栏有个step参数值为done,下面的代码是在提交页面向GA加入订单和购买的产品列表,GA后台已经能看到了,但是不知道怎么知道这笔订单的来路。因为SEO是跟别人合作的,需要区分SEO的订单和其他广告产生的订单。希望有做过这个的大大能帮帮忙。

分割线
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-xxxxxx-2']); //账户ID
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
/***GA***/
<!-- {if $step eq "done"} 订单提交成功-->
_gaq.push(['_addTrans',
    "<!--{$order.order_sn}-->",                                     // Order ID
    "<!--{$order.parent_id}-->",                            // Affiliation
    "<!--{$order.goods_amount}-->",                                    // Total
    "0",                                     // Tax
    "<!--{$order.shipping_fee}-->",                                        // Shipping
    "<!--{$order.city}|{$order.district}-->",                                 // City
    "<!--{$order.province}-->",                               // State
    "<!--{$order.country}-->"                                       // Country
  ]);
<!--{foreach from=$goods_list item=goods}-->
_gaq.push(['_addItem',
    "<!--{$order.order_sn}-->",                                     // Order ID
    "<!--{$goods.goods_sn}-->",                                     // SKU
    "<!--{$goods.goods_name}-->",                                  // Product Name 
    "<!--{$goods.goods_id}-->",                             // Category
    "<!--{$goods.goods_price}-->",                                    // Price
    "<!--{$goods.goods_number}-->"                                         // Quantity
  ]);
<!--{/foreach}-->
_gaq.push(['_trackTrans']);
<!-- {/if} -->

(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);
})();
用户头像 提问 2014年 1月29日 @ Ryze 上等兵 (293 威望)
分享到:

你的回答

隐私保护: 您的邮箱仅用于发送系统通知。
请输入验证码:
    图片验证码看不清?
登录注册后不会被要求输入验证码。

提一个问题:

相关问题

0 投票
1 回复 41 阅读
0 投票
0 回复 17 阅读
用户头像 提问 2013年 11月25日 @ Zilean 上等兵 (230 威望)
0 投票
1 回复 39 阅读
0 投票
1 回复 35 阅读
用户头像 提问 2013年 10月31日 @ Diana 上等兵 (326 威望)

欢迎来到随意问技术百科, 这是一个面向专业开发者的IT问答网站,提供途径助开发者查找IT技术方案,解决程序bug和网站运维难题等。
温馨提示:本网站禁止用户发布与IT技术无关的、粗浅的、毫无意义的或者违法国家法规的等不合理内容,谢谢支持。

欢迎访问随意问技术百科,为了给您提供更好的服务,请及时反馈您的意见。
...