// 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
Jalea Propol Defense

Jalea Propol Defense

S/.25.00Precio

Defensas fuertes naturalmente

  • Es una deliciosa y nutritiva jalea de propóleo y miel de abejas.
  • Es ideal para ayudar en la salud de la garganta.
  • Además ayuda a proteger las vías respiratorias.
  • Favorece a subir las defensas del organismo.

Contenido del producto: 150 mL.

Cantidad
  • BENEFICIOS

    •  Ayuda a mantener en excelente estado las vías respiratorias.
    • Fortalece naturalmente las defensas.
    • Sus componentes naturales actúan en conjunto para aliviar la tos producida por resfríos y bronquitis, y para diluir las secreciones.
  • DOSIS SUGERIDA:

    Se recomienda tomar con los alimentos 2 o 3 veces al día: 2-3 cucharadas de jalea directamente o disueltas en una taza con agua caliente o infusión.

bottom of page