> 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 # Method name: removeProductMedia(productId: string, media: Array) # Method package: wixStoresBackend # Method menu location: wixStoresBackend --> removeProductMedia # Method Link: https://dev.wix.com/docs/velo/apis/wix-stores-backend/remove-product-media.md # Method Description: Removes media items by ID from a product. The `removeProductMedia()` function returns a Promise that resolves when the media items with the given IDs are removed from a product with a given ID. You can remove multiple media items from a product at one time by delimiting the list of products with commas. If you do not specify any media IDs, all media items are removed from the product. Removing media items from a product does not delete the media from the site. # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## Remove all media items from a product ```javascript /******************************* * Backend code - products.jsw * *******************************/ import wixStoresBackend from 'wix-stores-backend'; export function removeProductMedia(productId, media) { return wixStoresBackend.removeProductMedia(productId, media); } /************* * Page code * *************/ import wixData from 'wix-data'; import { removeProductMedia } from 'backend/products'; // ... const productName = ...; // get name of product wixData.query("Stores/Products") .eq("name", productName) .find() .then((results) => { if (results.items.length > 0) { const productId = results.items[0]._id; removeProductMedia(productId) // not passing media will remove all media from product .then(() => { // all media items removed from the product }) .catch((error) => { // media items not removed from the product }); } }); ``` ---