// 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
21 Días para Cambiar - Cómo Desarrollar Hábitos Saludables y Mejorar tu Calidad

21 Días para Cambiar - Cómo Desarrollar Hábitos Saludables y Mejorar tu Calidad

S/.120.00Precio

¿Es posible cambiar de estilo de vida?

Probablemente muchos hayan planteado esta cuestión en algún momento de su vida. ya sea para perder peso, para revertir una enfermedad, para romper con hábitos nocivos o, en definitiva, para sentirse mejor, el cambio es necesario. Sin embargo a la hora de cambiar, enfrentamos serias dificultades que pueden entorpecer el proceso de adquisición de nuevos hábitos.

Cantidad
  • DETALLES DEL PRODUCTO

    Detalles del producto
    Autor Marcello Niek, Jorge D. Pamplona Roger
    Editorial Aces
    Tomos 1
    Edición 1ra. edición 2020
    Páginas 167
    Formato 17 cm. x 24 cm.
    ISBN 978-987-798-263-3
    País Aregentina
    Presentación Tapa Dura
bottom of page