Page 1 of 1
Tranzactiile nu se vad in google analytics, desi am implemetat codul de urmarire
Posted: Thu Apr 18, 2019 8:53 pm
by PAULAOPRIS
Buna,
Codul de google analytics pentru tranzactii l-am creat pe site.
In pagina de succes vad toate informatiile insa in analytics nu apar deloc.
Oare am gresit ceva la cod?
Multumesc

Opencart 2.3.0.2
Re: Tranzactiile nu se vad in google analytics, desi am implemetat codul de urmarire
Posted: Sat Jul 06, 2019 3:12 pm
by inactiveaccount9912
Instalati Tag assistant pe chrome si vedeti daca se trimit acele informatii.
Re: Tranzactiile nu se vad in google analytics, desi am implemetat codul de urmarire
Posted: Mon Jul 08, 2019 1:57 am
by agatha65
You are using gtag
https://developers.google.com/analytics ... -ecommerce
Your script should be like this one:
Code: Select all
gtag('event', 'purchase', {
"transaction_id": "24.031608523954162",
"affiliation": "Google online store",
"value": 23.07,
"currency": "USD",
"tax": 1.24,
"shipping": 0,
"items": [
{
"id": "P12345",
"name": "Android Warhol T-Shirt",
"list_name": "Search Results",
"brand": "Google",
"category": "Apparel/T-Shirts",
"variant": "Black",
"list_position": 1,
"quantity": 2,
"price": '2.0'
},
{
"id": "P67890",
"name": "Flame challenge TShirt",
"list_name": "Search Results",
"brand": "MyBrand",
"category": "Apparel/T-Shirts",
"variant": "Red",
"list_position": 2,
"quantity": 1,
"price": '3.0'
}
]
});
For checkout success page only you can use this(free)
https://www.opencart.com/index.php?rout ... n_id=22039
For a complete solution use this(paid)
https://www.opencart.com/index.php?rout ... n_id=25298