Events
cart:change
document.addEventListener('cart:change', (event) => {
const { source, cart, itemCount, totalPrice } = event.detail;
console.log(`Cart updated via "${source}". Items: ${itemCount}, Total: ${totalPrice}`);
});cart:error
slider:updated
Last updated
Was this helpful?