// 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
SUPLEMENTOS NUTRICOST INOSITOL EN FORMA DE MYO INOSITOL 500 MG 240 CÁPSULAS

SUPLEMENTOS NUTRICOST INOSITOL EN FORMA DE MYO INOSITOL 500 MG 240 CÁPSULAS

S/.145.00Precio

escripción

  • Nutricost: calidad garantizada
  • Producto probado por terceros.
  • Producto sin OGM
  • Gluten Free: producto sin gluten.
  • GMP Compliant Facility: producto elaborado en instalaciones en conformidad con las Buenas Prácticas de Manufactura actuales.
  • Vegetarian Product: producto vegetariano.
  • Suplemento alimentario.

Uso Sugerido

Como suplemento alimentario, tome 1 cápsula por día con 8-12 oz de agua o según las indicaciones de un profesional de la salud.

 

Este producto se elaboró con ingredientes de todo el mundo en EE.ynbsp;UU., donde también se probó su calidad.

Advertencias

Para personas sanas de 18ynbsp;años en adelante. Si está tomando medicamentos o tiene una afección médica, o está embarazada o lactando, consulte con un profesional de la salud antes de usar este producto. Mantenga fuera del alcance de los niños. No use el producto si falta el sello de seguridad o este está roto.

Almacene en un lugar fresco y seco.

Cantidad
bottom of page