// 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
MELATONINA 1MG PARA NIÑOS NUTRICOST 120 GOMITAS GUMMIES

MELATONINA 1MG PARA NIÑOS NUTRICOST 120 GOMITAS GUMMIES

S/.132.00 Precio
S/.125.00Precio de oferta

Refuerzo ocasional y seguro para el sueño de los niños 1 mg de melatonina por porción Producto saborizado de forma natural con otros saborizantes naturales. Suplemento alimentario. Nutricost® Quality Guaranteed: calidad Nutricost® garantizada. Nutricost está aquí para hacerle la vida más fácil. Para los niños que tienen problemas para dormir, las Gomitas de melatonina para niños de Nutricost lo tienen cubierto. No solo les ofrecen a sus hijos un refuerzo ocasional para dormir, sino que también son deliciosas gomitas fáciles de tomar. Uso sugerido Bajo la supervisión de un adulto, mastique 1 gomita por día a la hora de acostarse o cerca de esta, o según las recomendaciones 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 Vitaminas
    Forma farmacéutica Gomitas
    Presentación Unidad
    Contenido 120 gomitas
    Alto (cm) 10
    Ancho (cm) 10
    Ingrediente principal Melatonina
bottom of page