Installing Quizzes with Custom Carts
Variant added event
document.addEventListener('oke_connect_cart_itemVariantAdded', async event => {
console.log(event.detail);
});“Add To Cart” doesn’t update the shopping cart icon
document.addEventListener('oke_connect_cart_itemVariantAdded', async event => {
// Example only. Check your custom cart API.
const { detail } = event;
const customEvent = new CustomEvent('theme:cart:update', { detail: { id, quantity } });
document.dispatchEvent(customEvent);
});“Add To Cart” doesn’t open the cart drawer
Last updated