// Código para personalizar la tienda de productos en Wix con Velo import wixData from 'wix-data'; import wixLocation from 'wix-location'; $w.onReady(function () { loadCategories(); $w("#categoryDropdown").onChange((event) => { filterProducts(event.target.value); }); }); function loadCategories() { wixData.query("Categories") .find() .then((results) => { let options = [{ label: "Todas", value: "" }]; results.items.forEach(category => { options.push({ label: category.title, value: category._id }); }); $w("#categoryDropdown").options = options; }); } function filterProducts(categoryId) { let filter = wixData.filter(); if (categoryId) { filter = filter.eq("category", categoryId); } $w("#productsRepeater").data = []; wixData.query("Products") .filter(filter) .find() .then((results) => { $w("#productsRepeater").data = results.items; }); } // Agregar botón de carrito a cada producto $w("#productsRepeater").onItemReady(($item, itemData) => { $item("#addToCartButton").onClick(() => { // Lógica para agregar al carrito console.log(`Producto agregado: ${itemData.title}`); }); // Mostrar cinta de oferta si el producto tiene descuento if (itemData.discount) { $item("#offerRibbon").show(); } else { $item("#offerRibbon").hide(); } });
top of page

Aceite de pescado resterificado, ofrece las concentraciones optimas de Omega-3. Para aquellas personas que requieren alta concentración de Omega-3.

ULTIMATE OMEGA LIQUIDO

S/.275.00Precio
Cantidad
  • omar una cucharada (5mL) al día, con alimentos o según las indicaciones de su profesional de la salud o farmacéutico. Para obtener mejores resultados, refrigere y use dentro de los tres meses posteriores a la apertura.

Acerca de

Párrafo. Haz clic aquí para agregar tu propio texto y editar. Aquí puedes contar tu historia y permitir que tus usuarios sepan más sobre ti.

Síguenos

  • Twitter
  • Facebook
  • Pinterest

Únete a nuestra lista de correo

¡Gracias por tu mensaje!

© 2035 Creado por Sofía con Wix.com

bottom of page