Come Say Hi!
If our FAQs didn’t provide the answer you’re looking for, we’re here and happy to help! Just fill out the form below.
We check our inboxes from 8am-4pm PST, Monday to Friday.

{
const itemCountInCart = $store.cart.data
.items.filter(i => i.variant_id == product)
.reduce((total, item) => total + (item.quantity || 0), 0);
if (!itemCountInCart) {
$store.cart.addCartItem(product, 1);
}
else if (itemCountInCart > 1) {
$store.cart.updateCartItem(product, 1); // Never more than one.
}
})
"
>