\n\n
","tags":[],"warranty":"","price":{"without_tax":{"formatted":"$32.00","value":32,"currency":"USD"},"tax_label":"Tax"},"detail_messages":"","availability":"","page_title":"Ice Cream Sundae","cart_url":"https://eyespot.delivery/cart.php","max_purchase_quantity":0,"mpn":null,"upc":null,"options":[{"id":2374,"type":"Configurable_PickList_Set","display_name":"Size","required":true,"state":"variant_option","partial":"set-select","condition":true,"values":[{"id":7265,"label":"1/8","selected":true,"data":"1/8"}]}],"related_products":[{"id":3314,"sku":null,"name":"Boss Bar - Cannabis Infused Chocolate Bar - Cookiez N Cream","url":"https://eyespot.delivery/boss-bar-cannabis-infused-chocolate-bar-cookiez-n-cream/","availability":"","rating":0,"brand":{"name":"Boss Bar"},"category":["All","Edibles","Edibles/Chocolates & Cookies"],"summary":"The boss of edibles. Think High Creations top notch Belgian chocolate bars really pack a punch and are perfect for sharing. Chocolate lovers beware…each piece contains 33mg of THC [500mg / bar].\nThe...","image":{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3314/4851/MG_8426__72996__84473.1759342146.jpg?c=1","alt":"Boss Bar - Cannabis Infused Chocolate Bar - Cookiez N Cream"},"images":[{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3314/4702/_MG_8429__59387.1756422043.JPG?c=1","alt":"Boss Bar - Cannabis Infused Chocolate Bar - Cookiez N Cream"},{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3314/4701/_MG_8430__93364.1756422043.JPG?c=1","alt":"Boss Bar - Cannabis Infused Chocolate Bar - Cookiez N Cream"},{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3314/4851/MG_8426__72996__84473.1759342146.jpg?c=1","alt":"Boss Bar - Cannabis Infused Chocolate Bar - Cookiez N Cream"}],"date_added":"Aug 28th 2025","pre_order":false,"show_cart_action":true,"has_options":false,"stock_level":null,"low_stock_level":null,"qty_in_cart":0,"custom_fields":[{"id":3024,"name":"Brand","value":"Boss Bar"},{"id":3025,"name":"Type","value":"Chocolate Bar"},{"id":3026,"name":"THC Content","value":"500 Mg bar/ 100 mg per column"}],"num_reviews":0,"weight":{"formatted":"1.00 Grams","value":1},"demo":false,"add_to_cart_url":"https://eyespot.delivery/cart.php?action=add&product_id=3314","price":{"without_tax":{"currency":"USD","formatted":"$48.00","value":48},"tax_label":"Tax"},"add_to_wishlist_url":"/wishlist.php?action=add&product_id=3314"}],"shipping_messages":[],"rating":0,"reviews":{"messages":[],"captcha":"6LdWf8gSAAAAAI83aRectJhbwidegZKk8PzWBltH","total":0,"show_review_email":true,"recaptcha":{"enabled":1,"public_key":"6LdWf8gSAAAAAI83aRectJhbwidegZKk8PzWBltH","markup":"
"}},"bulk_discount_rates":[],"meta_keywords":"","show_quantity_input":1,"title":"Ice Cream Sundae","gift_wrapping_available":false,"min_purchase_quantity":0,"customizations":[],"images":[{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3344/4897/ice_cream_sundae_nug_shot-min__12973.1759771182.JPG?c=1","alt":"Ice Cream Sundae"},{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3344/4823/Ice_cream_Sundae_group_shot-min__00690.1758835242.JPG?c=1","alt":"Ice Cream Sundae"},{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3344/4825/Ice_Cream_Sundae_bowl_close-min__92091.1758835242.JPG?c=1","alt":"Ice Cream Sundae"},{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3344/4824/Ice_Cream_Sundae_Bowl_shot-min__27193.1758835242.JPG?c=1","alt":"Ice Cream Sundae"}]};
if (customer) {
$(form)
.find('input[name="TICKET.name"]')
.val(customer.name)
.change();
$(form)
.find('input[name="TICKET.email"]')
.val(customer.email)
.change();
$(form)
.find('input[name="TICKET.product_id"]')
.val(product.id)
.change();
}
$(form).find("input[type='submit']").on("click", function(event) {
if(!IsValid){
event.preventDefault();
$("#prodRevErrMsg").html(`
Only customers who have purchased this item can review it.
`);
}
});
//validate Product form whenever email changes
checkForPrevOrders(form);
$(form).find("input[name='TICKET.email']").on("change", function(event) {
checkForPrevOrders(form);
});
},
onFormSubmitted: function(form, data){
window.location.reload();
}
});
function checkForPrevOrders(form) {
const email = $(form).find('input[name="TICKET.email"]').val();
if(email){
fetch("https://eyespot-connector.uk.r.appspot.com/review/validation?email="+email)
.then((response) => response.json())
.then((result) => {
IsValid = result.isPrevOrderExists;
})
}
}