aawnu / php-ga4

PHP Library for Google Analytics 4 with Server Side Tagging
The Unlicense
54 stars 9 forks source link

Fix item::item_category index conversion #77

Closed aawnu closed 10 months ago

aawnu commented 10 months ago

Item_category is currently grouped in an array but is supposed to be sent to Google Analytics as individual lines appended by index number like:

{
  "items": [
    {
      "index": 0,
      "item_brand": "Google",
      "item_category": "Apparel",
      "item_category2": "Adult",
      "item_category3": "Shirts",
    //...
}