> 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: View Content ## Article: View Content ## Article Link: https://dev.wix.com/docs/sdk/host-modules/site/events/general/view-content.md ## Article Content: # View Content The `ViewContent` event is triggered whenever site content is viewed. ## Properties | Name | Type | Description | | ---------- | ------ | ------------------------------------------------ | | `category` | string | Collection name. | | `currency` | string | Default site currency in ISO-4217 format. | | `id` | string | Product ID. | | `name` | string | Product name. | | `origin` | string | Wix App name, such as Stores or Bookings. | | `price` | number | Product price. | | `sku` | string | Product stock-keeping unit. | | `brand` | string | Brand name of the product. | | `list` | string | List or collection the product is in. | | `position` | number | Position of the product in a list or collection. | | `variant` | string | Product variant information. | | `userId` | string | User ID. | | `type` | string | Product type: physical or digital. | ### Example ```JSON { "category": "All Products", "currency": "ILS", "id": "df19c1f7-07d8-a265-42f8-e8dfa824cc6e", "name": "Soundbeam ERD - 3083", "origin": "Stores", "price": 220, "sku": "00001", "brand": "Soundbeam", "list": "Featured Products", "position": 3, "variant": "Black", "userId": "d35edd38-4684-4232-9d20-90caccce8cee" } ```