> Portal Navigation: > > - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version. > - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages). > - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`). > - Top-level index of all portals: https://dev.wix.com/docs/llms.txt > - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt ## Resource: Remove From Cart ## Article: Remove From Cart ## Article Link: https://dev.wix.com/docs/sdk/host-modules/site/events/wix-stores/remove-from-cart.md ## Article Content: # Remove from Cart Triggered when the user clicks to remove an item from the cart. ### Properties |Name|Type|Description| |---|---|---| |`origin`|text|Wix App name, such as Stores or Bookings.| |`id`|text|Product ID.| |`name`|text|Product name.| |`category`|text|Collection name.| |`variant`|text|Selected choice from 1st product option.| |`price`|currency|Product price.| |`currency`|currency|Currency in ISO-4217 format.| |`quantity`|number|Quantity of product removed from cart.| |`sku`|text|Product SKU.| |`type`|text|Product type such as physical or digital.| |`userId`|text|User ID.| ### Example ```JSON { "id": "df19c1f7-07d8-a265-42f8-e8dfa824cc6e", "origin": "Stores", "name": "Soundbeam ERD - 3083", "category": "All Products", "currency": "ILS", "price": 220, "quantity": 2, "sku": "00001", "type": "physical", "userId": "79f246a8-46fd-4429-aac6-006d13cce9a6" } ```