-
Notifications
You must be signed in to change notification settings - Fork 1
/
configTracking.js
86 lines (85 loc) · 1.45 KB
/
configTracking.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
var plugins = {
criteo: true,
googleadwordssale: true,
googleanalyticsecommerce: true,
pac_conversionswitch: true,
soquero: true,
tradedoubler: true,
zanoxsale: true
};
var conf = [
{
url: "http://www.natue.com.br",
tags: {
"robots": [ "index", "follow" ]
},
tracking: {
TC: {
contentId: "startpage",
currency: "BRL",
pageType: "homepage"
},
plugins: plugins
}
},
{
url: "http://www.natue.com.br/catalog",
tags: {
"robots": [ "index", "follow" ]
},
tracking: {
TC: {
contentId: "catalog.overview",
currency: "BRL",
pageType: "catalog"
},
plugins: plugins
}
},
{
url: "http://www.natue.com.br/detoxgreen-300g-sanavita-3961.html",
tags: {
"robots": [ "index", "follow" ]
},
tracking: {
TC: {
contentId: "product.1501031331",
currency: "BRL",
pageType: "product",
locationId: "catalog.index.detail",
productStatus: "view"
},
plugins: plugins
}
},
{
url: "https://www.natue.com.br/cart/index/add?sku=1501031331&qty=1",
tags: {
"robots": [ "noindex", "nofollow" ]
},
tracking: {
TC: {
contentId: "cart.add",
currency: "BRL",
pageType: "cart",
locationId: "cart.index.index",
product: "1501031331",
productQuantity: "1"
},
plugins: plugins
}
},
{
url: "http://www.natue.com.br/checkout",
tags: {
"robots": [ "index", "follow" ]
},
tracking: {
TC: {
contentId: "checkout.register",
currency: "BRL",
pageType: "checkout"
},
plugins: plugins
}
}];