import wixEcomFrontend from 'wix-ecom-frontend'; import wixEcomBackend from 'wix-ecom-backend'; import { createEphemeralProduct, hideProduct } from 'backend/ephemeralProduct.web'; const WIX_STORES_APP_ID = '215238eb-22a5-4c36-9e7b-e7c08025e04e'; const INDEXING_DELAY_MS = 2000; // small wait so the new product is addable $w.onReady(() => { const html = $w('#html1'); // your iframe element id html.onMessage(async (event) => { const data = event?.data || {}; if (data.type !== 'ADD_TO_CART_WIX') return; try { const { modelId, productName, price, quantity = 1, designNotes = '', thumbnailUrl, } = data; const { productId, sku } = await createEphemeralProduct({ name: productName, sku: modelId, price, description: designNotes, thumbnailUrl, }); await new Promise((r) => setTimeout(r, INDEXING_DELAY_MS)); const options = { lineItems: [ { catalogReference: { appId: WIX_STORES_APP_ID, catalogItemId: productId, }, quantity: Number(quantity || 1), }, ], }; await wixEcomBackend.currentCart.addToCurrentCart(options); await wixEcomFrontend.refreshCart(); await wixEcomFrontend.navigateToCartPage(); } catch (err) { console.error('[PAGE] add-to-cart error:', err); html.postMessage({ type: 'ADD_TO_CART_ERROR', error: err?.message || 'Unknown error', }); } }); });
top of page
Colorcard-hex_fcf3ec-www.colorbook.io.png
Silver Easter Egg Basket Charm

Silver Easter Egg Basket Charm

$35.00Price

Sterling Silver 

Quantity
bottom of page