Mobile app version of vmapp.org
Login or Join
Sent6035632

: 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'

@Sent6035632

Posted in: #Ecommerce #GoogleAnalytics

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?

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Sent6035632

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme