\n","tags":[],"warranty":"","price":{"without_tax":{"formatted":"$125.00","value":125,"currency":"USD"},"tax_label":"Tax","sale_price_without_tax":{"formatted":"$125.00","value":125,"currency":"USD"},"non_sale_price_without_tax":{"formatted":"$175.00","value":175,"currency":"USD"}},"detail_messages":"","availability":"","page_title":"Yumberry Fields","cart_url":"https://eyespot.delivery/cart.php","max_purchase_quantity":0,"mpn":null,"upc":null,"options":[{"id":2252,"type":"Configurable_PickList_Set","display_name":"Size","required":true,"condition":true,"state":"variant_option","values":[{"label":"1/4 oz","id":6648,"data":"1/4 oz","selected":false},{"label":"OZ","id":6649,"data":"OZ","selected":false}],"partial":"set-rectangle"}],"related_products":[{"id":3126,"sku":null,"name":"Mixed Oz","url":"https://eyespot.delivery/mixed-oz/","availability":"","rating":5,"brand":{"name":"Eyespot"},"category":["Flowers/Collections/Choice Buds","Flowers/Collections","Flowers","Flowers/Hybrid","Flowers/Indica","Flowers/Sativa","All","Flowers/Hybrid/Sativa Dominant","Flowers/Hybrid/Indica Dominant","Flowers/Hybrid/50/50","Brands","Brands/Eyespot","Deals & Combos/Deals/MIxed","Deals & Combos","Deals & Combos/Deals","Mix N Match"],"summary":"For a limited time only, enjoy a special offer on a full ounce split between quality strains—perfect for those who love variety. This unique deal lets you mix and match to try something new...","image":{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3126/4123/bud_raining__16297.1747515976.png?c=1","alt":"Mixed Oz"},"images":[{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3126/4123/bud_raining__16297.1747515976.png?c=1","alt":"Mixed Oz"},{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3126/4126/Grape_Jammerz_nug_Shot__74147.1747516933.jpg?c=1","alt":"Grape Jammerz"},{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3126/4125/Grape_Pie_Nug_Shot__82507.1747516933.jpg?c=1","alt":"Grape Pie"},{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3126/4127/cookies_and_cream_nug_shot__08317__08492.1747516933.jpg?c=1","alt":"cookies and cream"},{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3126/4138/granimals_nug__24307.1748107205.jpg?c=1","alt":"Granimals"}],"date_added":"May 17th 2025","pre_order":false,"show_cart_action":true,"has_options":true,"stock_level":null,"low_stock_level":null,"qty_in_cart":0,"custom_fields":null,"num_reviews":1,"weight":{"formatted":"1.00 Grams","value":1},"demo":false,"price":{"without_tax":{"currency":"USD","formatted":"$150.00","value":150},"tax_label":"Tax"},"add_to_wishlist_url":"/wishlist.php?action=add&product_id=3126"}],"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":"Yumberry Fields","gift_wrapping_available":false,"min_purchase_quantity":0,"customizations":[],"images":[{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3157/4189/Yum_berry_Fields_nug__19342.1748653406.jpg?c=1","alt":"Yumberry Fields"},{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3157/4190/Yum_berry_Fields_bowl__30795.1748653406.jpg?c=1","alt":"Yumberry Fields"},{"data":"https://cdn11.bigcommerce.com/s-3lwd5tu3va/images/stencil/{:size}/products/3157/4188/Yum_berry_Fields_group__75707.1748653406.jpg?c=1","alt":"Yumberry Fields"}]};
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;
})
}
}