You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to change/format an event name within a plugin for a specific namespace?
For example, for Google Analytics 4, I need to use specific event names and properties for the e-commerce data but don't necessarily want to use the Google Analytics event names everywhere.
I was hoping something like this would work, but the event gets swallowed:
This is interesting one. Changing event isn't setup right now. Would be a good future improvement tho
Right now you can send provider specific events like this:
/* Send track call to one 1 place */analytics.track('item_clicked',{price: 11,sku: '1234'},{plugins: {// disable this specific track call for all plugins except google-analyticsall: false,['google-analytics']: true}})
Is it possible to change/format an event name within a plugin for a specific namespace?
For example, for Google Analytics 4, I need to use specific event names and properties for the e-commerce data but don't necessarily want to use the Google Analytics event names everywhere.
I was hoping something like this would work, but the event gets swallowed:
Adjusting the properties works fine but not the event name.
The text was updated successfully, but these errors were encountered: