Answer the question
In order to leave comments, you need to log in
Why doesn't product price submission work in Google Analytics eCommerce?
Hello!
There is such a script for sending purchase data to GA on the successful payment page:
//Здесь код счётчика, взятый без изменений
ga('require', 'ecommerce', 'ecommerce.js');
ga('ecommerce:addTransaction', {
'id': '<?php echo $id ?>',
'affiliation': 'Мой магазин',
'revenue': '<?php echo $price ?>',
'shipping': '',
'tax': ''
});
ga('ecommerce:addItem', {
id: '<?php echo $id ?>',
name: '<?php echo $name_item ?>',
category: '<?php echo $cat_item ?>',
price: '<?php echo $price_item ?>',
quantity: '<?php echo $count_item ?>'
});
ga('ecommerce:send');
ga('ecommerce:clear');
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question