如何在我们的opencart网站上添加Google电子商务跟踪

时间:2018-03-16 09:25:10

标签: javascript php opencart

我有一个opencart网站,我需要在我的opencart网站中添加Google电子商务跟踪如何添加?哪里会加?我有一个谷歌脚本代码,但我不知道这个,请任何人帮助我。

此处谷歌谷歌电子商务跟踪代码如何转换我们的基础请帮助:

<script type="text/javascript">
ga('require', 'ecommerce');
ga('ecommerce:addTransaction', {
  'id': '1234',                     // Transaction ID. Required. dynamic variable of order id
  'affiliation': 'Acme Clothing',   // Affiliation or store name. Kuberan Silks
  'revenue': '11.99',               // Grand Total. grand total dynamic variable of the price
  'shipping': '5',                  // Shipping. dynamic variable of shipping
  'tax': '1.29'                     // Tax. dynamic tax variable
});

ga('ecommerce:addItem', {
  'id': '1234',                     // Transaction ID. Required. 
  'name': 'Fluffy Pink Bunnies',    // Product name. Required.
  'sku': 'DD23444',                 // SKU/code.
  'category': 'Party Toys',         // Category or variation.
  'price': '11.99',                 // Unit price.
  'quantity': '1'                   // Quantity.
});

ga('ecommerce:send');
</script>

1 个答案:

答案 0 :(得分:-2)

1。登录现有帐户或创建新帐户以从以下位置检索跟踪代码:

2. 复制提供的代码。

3. 登录您的OpenCart管理面板。

4. 导航到扩展程序 - &gt;分析:

enter image description here

5. 。在Google Analytics标题旁边,点击蓝色铅笔图标以编辑代码:     enter image description here

6. 将检索到的跟踪代码粘贴到文本框中。

7。选择已启用并保存更改。

8. 使用Control / Command + U热键检查页面源代码。该代码段应出现在页头部分的结束标记之前:

enter image description here

9。继续访问您的Google Analytics帐户以跟踪网站的统计信息。