Is it possible to messure e-commerce events with the analytics plugin? #330
Unanswered
mariusbolik
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hi, The correct event names can be found on this page if you select logEvent(analytics, 'view_item_list', params1); It may be that there are problems with the nested objects: // A pair of jeggings
const item_jeggings = {
item_id: 'SKU_123',
item_name: 'jeggings',
item_category: 'pants',
item_variant: 'black',
item_brand: 'Google',
price: 9.99
};
const params1 = {
item_list_id: 'L001',
item_list_name: 'Related products',
items: [item_jeggings, item_boots, item_socks]
}; But this would be a bug that can be fixed. So feel free to let me know if it works. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
thank you for the great plugin!
Is it possible to measure e-commerce events exactly like mentioned here: https://firebase.google.com/docs/analytics/measure-ecommerce
Should I simply use logEvent method or is there any other preferred approach?
Regards,
Marius
Beta Was this translation helpful? Give feedback.
All reactions