A
A
Anton Neverov2016-11-17 06:06:38
Google Analytics
Anton Neverov, 2016-11-17 06:06:38

Why did Google Analyitcs stop tracking ecommerce companies correctly?

Hello!
I ran into this problem in GA:
Previously, the company report looked like this:
d39c6cf4830e47958e656197d9737a52.png
It still looks like this, if you look at old reports.
In new reports, the same tab looks like this
cf6387ec92d54f3bb5a4736333c14cf3.png
: the income column is always zero.
If you enter e-commerce, it says that users made purchases after switching from the payment site (sci.interkassa.com):
5a0f48e397ce4437a17e26c1525b114b.png
Previously, the same old man looked like this:
4941b34947f541ddbc18796ee5a332c9.png
The site works according to the system: A person accesses a link with UTMs => Selects a product => Goes to the payment site sci.interkassa.com => Returns to the site, where he is greeted by a successful purchase page and the script sends transaction data to GA.
The data sending script looks something like this, but it has never changed at all:

$item= "
  ga('ecommerce:addItem', {
  id: '".$id."',
  name: '".$item_name."',
  category: '".$item_cat."',
  price: '".$item_price."',,
  quantity: '".$item_count."'
});";
ga('require', 'ecommerce', 'ecommerce.js');
ga('ecommerce:addTransaction', {
  'id': '<?php echo $id ?>',
  'affiliation': 'ru.csgosticker.com',
  'revenue': <?php echo $price ?>,
  'shipping': 0,
  'tax': 0
});
<?php echo $item ?>
ga('ecommerce:send');
ga('ecommerce:clear');

The strangest thing is that nothing has changed, as far as I remember. Only the site switched from HTTP to HTTPS, but in GA I immediately changed the address.
With what it can be connected and in what direction to dig?
Thanks in advance!

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question