> 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: Sample Flows ## Article: Sample Flows ## Article Link: https://dev.wix.com/docs/api-reference/business-solutions/stores/service-plugins/product-restrictions-v3/sample-flows.md ## Article Content: # Sample Flows This article presents use cases your app could support, as well as sample flows that could support each use cases. You aren't limited to these exact flows, but they can be a helpful jumping off point as you plan your app's integration. ## Configure product restrictions You can configure product restrictions that apply to all your products. For example, to configure restrictions that prevent users from editing prices and options, while allowing them to edit modifiers after acknowledging a warning modal, you can follow these steps: 1. Set the following [configuration](https://dev.wix.com/docs/api-reference/business-solutions/stores/service-plugins/product-restrictions-v3/configuration.md): ```json { "productRestrictionsConfig": { "prices": { "restrictionLevel": "LOCKED" }, "options": { "restrictionLevel": "LOCKED" }, "modifiers": { "restrictionLevel": "WARNING" } } } ``` 2. When a site owner installs your app, all of your products are restricted according to the configuration above.