// 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
Aloe Vera

Aloe Vera

S/.63.00 Precio
S/.59.00Precio de oferta

Marca: Xtralife  

  Aloe Vera Perú  

  Contenido: 60 Softgels  

  Reg. Sanitario: PNE-0931 

 

Gracias a sus propiedades antioxidantes e hidratantes, la sábila nos permite restaurar nuestra piel ya sea de cicatrices, picaduras o incluso estrías. Alivia el dolor: sus propiedades analgésicas e inhibidoras permiten que el aloe vera tenga beneficios respecto al control del dolor y malestar.

Cantidad
  • BENEFICIOS

    • Ayuda a la digestión.

     

    • Mejora la inmunidad.

     

    • Reduce el estrés.

     

    • Mejora la salud del corazón.

     

    • Limpia la piel.

     

    • Mejora las funciones del hígado.

     

  • IDEAL EN CASOS DE:

    • Problemas estomacales.

     

    • Gastritis.

     

    • Colon Irritable

     

    • Úlcera.

     

    • Eliminación de parásitos.
  • DOSIS SUGERIDA:

    • De 1 a 2 softgels al día.
  • PRECAUCIONES / CONTRAINDICACIONES:

    • Consumida en exceso, puede causar una congestión debajo del vientre.

     

    • No se recomienda su uso durante el embarazo ni durante la lactancia.

     

    • No consumir durante las menstruaciones.
bottom of page