// 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
Mente Positiva

Mente Positiva

S/.270.00Precio

Mente positiva provee herramientas para alcanzar la salud y el bienestar emocional, frente a desafíos que a menudo no sabemos bien cómo encarar. En un solo volumen, este manual ofrece un amplísimo catálogo de situaciones problemáticas que sobrevienes a todo el mundo. adversidades y opciones de conducta son analizadas con amenidad y rigor técnico por un autor que es ya un reconocido comunicador, con décadas de éxito como profesor y escritor.

Cantidad
  • DETALLES DEL PRODUCTO

    Detalles del producto
    Autor Julián Melgoza
    Editorial ACES
    Tomos 1
    Edición 1 ed. 5ta reimp. Fecha 1ra ed. 08/2019
    Páginas 328
    Formato 17 cm. x 25 cm.
    ISBN 9789877019797
    Presentación Tapa Dura
bottom of page