// 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
El Poder Medicinal de los Super Alimentos

El Poder Medicinal de los Super Alimentos

S/.270.00Precio

El PODER MEDICINAL DE LOS SUPERALIMENTOS

Contiente descripciones muy detalladas de las propiedades medicinales de estos superalimentos, podrás descibrir cómo estos pueden prevenir, aliviar e incluso sanar problemas de salud que están relacionados con diferentes partes de nuestro cuerpo. Además de ellos te enseña cómo prepararlos para que puedas usarlos de una manera muy práctica y saludable.

Cantidad
  • DETALLES DEL PRODUCTO

    Autor Jorge Pamplona Roger
    Editorial Asociación Casa Editora Sudamericana
    Tomos 1
    Edición 2023
    Páginas 385
    Formato 17 x 24 cm
    ISBN 978-987-798-663-1
    Presentación Tapa Dura
bottom of page