top of page

Crear tienda personalizada

Hey! Nuevo tutorial. En este nuevo video, aprenderás como crear una tienda personalizada en Wix con un poco de código Velo. No olvides subscribirte y comentar alguna pregunta!



 

MyStore(Title) - Page import { cart } from 'wix-stores'; $w.onReady(function () { let itemObj = $w("#dynamicDataset").getCurrentItem(); console.log(itemObj); let myProductId = itemObj.product; $w("#addToCart").onClick(() => { const products = [{ "productId": myProductId, "quantity": 1 }] cart.addProducts(products) .then((updatedCart) => { // Products added to cart console.log('AGREGADO CORRECTAMENTE'); cart.showMiniCart(); }) .catch((error) => { console.log(error); }); }) });



 


7 views0 comments

Recent Posts

See All
bottom of page