: Only half the revenue data gets logged in Google Analytics ecommerce I am sending the following data to Google Analytics to register ecommerce transactions: First of all transaction data: 'form_params'
I am sending the following data to Google Analytics to register ecommerce transactions:
First of all transaction data:
'form_params' => [
'v' => $gaVersion,
'tid' => $gaId,
'cid' => $client->getId(),
't' => 'transaction',
'ti' => $transaction->getId(),
'tr' => $transaction->getPrice(),
'cu' => 'EUR'
],
Then item data:
'form_params' => [
'v' => $gaVersion,
'tid' => $gaId,
'cid' => $client->getId(),
't' => 'item',
'in' => $transaction->getName(),
'ti' => $transaction->getId(),
'ip' => $transaction->getPrice(),
'iv' => $transaction->getCategory(),
'ic' => $transaction->getSku(),
'iq' => $transaction->getQuantity(),
'cu' => 'EUR'
],
Each transaction for me only ever has one item. I push the from backend, using the measurement protocol.
Only about half the revenue gets shown in analytics dashboard. Any ideas what could be wrong? Anyone had a problem where not all data would be shown in dashboard?
More posts by @Sent6035632
Terms of Use Create Support ticket Your support tickets Stock Market News! © vmapp.org2024 All Rights reserved.