Re: Add To Cart Button Not Functioning - THEME : DAWN

Add To Cart Button Not Functioning - THEME : DAWN

simlulu
Tourist
25 0 3

Hey! Kindly check my add_to_cart button specifically on product pages. It doesn't seem to be functioning right.
https://www.colomojofindz.com/products/warm-light-saturn-nebula-moon-bedside-nightlight-luminous-cry...

Reply 1 (1)

simlulu
Tourist
25 0 3

ASSETS/PRODUCT-FORM.JS:{line 45 - 55}

fetch(`${routes.cart_add_url}`, config)
.then((response) => response.json())
.then((response) => {
if (response.status) {
publish(PUB_SUB_EVENTS.cartError, {
source: 'product-form',
productVariantId: formData.get('id'),
errors: response.errors || response.description,
message: response.message,
});
this.handleErrorMessage(response.description);