Carts - aareano/ifshop-wiki GitHub Wiki
The Cart event class contains the following events:
- a cart is created
- a cart is updated
The cart
drop is the root drop that's defined for this class. Below is an example of the tree of liquid drops available to you.
Example Usage: To access the product image of one of the first line item in the the cart, you would use cart.items[0].product.image
.
cart
├── line_item
│ ├── product
│ │ ├── collection
│ │ ├── image
│ │ ├── image
│ │ ├── image
│ │ ├── product_option
│ │ └── product_option
│ └── variant
│ └── image
├── line_item
│ ├── product
│ │ ├── collection
│ │ ├── image
│ │ ├── image
│ │ ├── product_option
│ │ └── product_option
│ └── variant
│ └── image
├── line_item
│ ├── product
│ │ ├── collection
│ │ ├── image
│ │ ├── image
│ │ └── product_option
│ └── variant
│ └── image
├── line_item
│ ├── product
│ │ ├── collection
│ │ ├── image
│ │ ├── image
│ │ └── product_option
│ └── variant
│ │ └── image
└── shop
└── collection
The tree is representative of what you can expect for the following events:
- a cart is created
- a cart is updated
Note: This tree is an illustrative, but not exhaustive - in theory, it goes on forever! - demonstration of the assemblage and structure of the data available to you.
Warning: The tree of liquid drops you encounter in practice will almost certainly have different dimensions than this. This is merely an example to show structure.