// 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
Alfa Probióticos

Alfa Probióticos

S/.100.00Precio

PRESENTACIÓN Caja por 15 Sachet

USO TRADICIONAL RECOMENDADO:
• Ayuda a mantener el equilibrio de la flora intestinal, mejorando la función digestiva.
• Puede contribuir a estimular el sistema inmunológico.
• Tradicionalmente usado para regular el tránsito intestinal, mejora la digestión, permite el aumento de la absorción de nutrientes y previene las enfermedades intestinales.

Cantidad
  • DETALLES DEL PRODUCTO

    CONDICIONES DE ALMACENAMIENTO:
    Conservar en un lugar fresco y seco.
    Mantener lejos de las fuentes de calor y
    luz. Una vez abierto mantener refrigerado

  • BENEFICIOS

    BENEFICIOS:
    Mezcla de harina de té verde, kombucha y probióticos que contribuyen a la salud de la microbiota intestinal y absorción de nutrientes, regulación de grasa y glucosa.

  • Uso Sugerido

    USO SUGERIDO:
    1/2 sachet dos veces al día.

bottom of page