// 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
Compuesto Nº 1

Compuesto Nº 1

S/.50.00Precio

Coadyuvante para el normal funcionamiento del hígado y riñones.
Compuesto Nº 1

PRESENTACIÓN Pote de 70 g

USO TRADICIONAL RECOMENDADO:
• Limpia y desintoxica el cuerpo, ayuda a reducir el colesterol malo y los triglicéridos.
• Ayuda al hígado, riñones, estomago y piel para su normal funcionamiento.
• Ayuda a fortalecer el sistema inmunológico, coadyuvante para el tratamiento de calculos.

Cantidad
  • BENEFICIOS

    BENEFICIOS:
    Una combinación única de harina de ajos, tomillo, palillo y romero, contribuye a mejorar la circulación y digestión, reduce la inflamación y mejora la memoria.

    USO SUGERIDO:
    01 cucharadita de dos a tres veces al día.

    CONDICIONES DE ALMACENAMIENTO:
    Conservar en un lugar fresco y seco.
    Mantener lejos de las fuentes de calor y luz.

bottom of page