// 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
NUTRICOST OMEGA 3 120 CAPSULAS GEL FISH OIL EPA DHA CAPSULAS GEL

NUTRICOST OMEGA 3 120 CAPSULAS GEL FISH OIL EPA DHA CAPSULAS GEL

S/.192.00 Precio
S/.155.00Precio de oferta

Descripción 1200 mg de EPA (EE)/850 mg de DHA (EE). 2500 mg de ácidos grasos omega-3 por porción. Suplemento alimentario. Nutricost® Quality Guaranteed: calidad Nutricost® garantizada. Third Party Tested: producto probado por terceros. GMP Compliant Facility: producto elaborado en instalaciones en conformidad con las Buenas Prácticas de Manufactura. Non-GMO Product: producto sin OGM. Sin gluten. Uso sugerido Como suplemento alimentario, tome 3 cápsulas blandas por día con 8-12 oz de agua o según las indicaciones de un profesional de la salud.

Cantidad
  • ESPECIFICACIONES

    Marca NUTRICOST
    alto empaque 15
    ancho empaque 15
    largo empaque 15
    Peso (kg) 1
    Tipo de producto Omega 3
bottom of page