// 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
Xtra Slim

Xtra Slim

S/.84.00 Precio
S/.79.00Precio de oferta

Marca: Xtralife  

  Xtra Slim Perú  

  Contenido: 90 Tabletas  

  Reg. Sanitario: DE-0813  

 

Favorecer la pérdida de peso y reducir significativamente el número de calorías absorbidas por el cuerpo. Estimula la quema de grasas, evitando así su almacenamiento.

Cantidad
  • BENEFICIOS

    • Reduce el peso corporal.

     

    • Es un gran metabolizador de las grasas a nivel celular.

     

    • Controla los niveles de colesterol.

     

    • Previene las enfermedades cardiovasculares.

     

    • Regula la glucosa en sangre.

     

    • Previene y reduce la acumulación de la grasa en el hígado.

     

    • Es un acertado desintoxicante hepático.
  • IDEAL EN CASOS DE:

    • Obesidad y sobrepeso.

     

    • Hígado graso.

     

    • Colesterol y triglicéridos altos.
  • DOSIS SUGERIDA:

    • Debe consumirse 1 tableta en cada una de las tres comidas diarias. Asi mismo, para mayores resultados, recomendamos que su ingesta sea acompañada por una dieta adecuada y actividad física.
  • PRECAUCIONES / CONTRAINDICACIONES:

    • En caso de presentar alguna alergia a sus componentes, no consumirla o dejarla de consumir.

     

    • No debe ser ingerido por mujeres en la etapa del embarazo o lactancia.
bottom of page