> 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: removeProductMediaFromChoices(_id: string, media: Array) # Method package: wixStoresV2 # Method menu location: wixStoresV2 --> products --> removeProductMediaFromChoices # Method Link: https://dev.wix.com/docs/velo/apis/wix-stores-v2/products/remove-product-media-from-choices.md # Method Description: Removes media items from all or some of a product's choices. (Media items can only be set for choices within one option at a time - e.g., if you set media items for some or all of the choices within the Colors option (blue, green, and red), you won't be able to also assign media items to choices within the Size option (S, M, and L).) # Method Code Examples: *** Note: do not assume any prop names or enum values other than the ones in the example. ## removeProductMediaFromChoices example for dashboard page code ```javascript import { products } from 'wix-stores.v2'; async function removeProductMediaFromChoices(id, media) { try { const result = await products.removeProductMediaFromChoices(id, media); return result; } catch (error) { console.error(error); // Handle the error } } ``` ## removeProductMediaFromChoices example for exporting from backend code ```javascript import { products } from 'wix-stores.v2'; import { webMethod, Permissions } from 'wix-web-module'; import { elevate } from 'wix-auth'; const elevatedRemoveProductMediaFromChoices = elevate(products.removeProductMediaFromChoices); export const removeProductMediaFromChoices = webMethod( Permissions.Anyone, async (id, media) => { try { const result = await elevatedRemoveProductMediaFromChoices(id, media); return result; } catch (error) { console.error(error); // Handle the error } } ); ``` ---