// 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
HIGASOL - DETOX HEPÁTICO Y PROTECCIÓN EN BEBIDA (600ML) - FITOSANA

HIGASOL - DETOX HEPÁTICO Y PROTECCIÓN EN BEBIDA (600ML) - FITOSANA

S/.25.00Precio

Higasol Premium en Bebida (600ml) es un hepatoprotector 100% natural que protege, desinflama y depura el hígado, promoviendo su desintoxicación natural. Higasol Premium en Bebida (600ml) también regula el colesterol y los triglicéridos, mejora el metabolismo y contribuye al funcionamiento intestinal. Sus ingredientes naturales ayudan a tratar gastritis, úlceras y gases, además de actuar como protector de la mucosa gástrica.

Cantidad
  • BENEFICIOS

    • Protege, desinflama y depura el hígado de manera natural.
    • Contribuye al funcionamiento adecuado del intestino.
    • Mejora la digestión y regula el metabolismo.
    • Ayuda a prevenir y tratar gastritis, úlceras y gases.
    • Actúa como protector de la mucosa gástrica.
    • Regula los niveles de colesterol y triglicéridos.
    • Hépatoprotector 100% natural.
  • CONTENIDO

    Alcachofa, boldo, diente de león y agracejo.

  • DOSIS SUGERIDA:

    Se recomienda consumir de 2 a 3 vasitos dosificadores 3 veces al día junto con los alimentas.

bottom of page