Signature Organic Coffee | Shop Now | Higher Grounds Trading Co. (2024)

Home / Collections / Signature Blends

Our signature blends offer consistent profiles all year long.

Share

Organic Justice Light-Medium

from $16.00

Organic Highland Humanity Medium-Dark

from $16.00

Organic Mayan Magic Espresso

from $16.00

Organic Funky Mamacita Medium-Dark

from $16.00

Organic Typhoon Dark

from $16.00

Organic French Roast

from $16.00

×

+

  • Prev
  • Page 1 of 2
  • Next

"; $(".form-btns").append(htmlInner); var htmlInner2 = ""; const crValueInner = crValue.values; for (let j = 0; j < crValueInner.length; j++){ const optionVal = crValue[j]; const isChecked = (j == 0)? 'checked': ''; const currentValue = crValueInner[j]; if(j == 0) { variantMap[crValue.name] = currentValue; sessionStorage.setItem("variant_map", JSON.stringify(variantMap)) } htmlInner2 = htmlInner2 + ""; } $(`#label-block-${i}`).html(htmlInner2) } if(isSub) { $(".form-btns").append('

'); $("#freq-block").html(""); jQuery(`#p-${productHandle} .rc_select option`).each(function(i, e) { (jQuery("") .attr("value", jQuery(this).val()) .attr("checked", i == 0) .attr("id", 'r-'+i) .click(function() { sessionStorage.setItem("interval_frequency", jQuery(this).val()); sessionStorage.setItem("interval_unit", $("[id^=rc_shipping_interval_unit]").val()); }).add( $("") .attr("for", "r-"+i) )).appendTo("#freq-block"); }); } $('.variant-btns').each(function(i, e){ $(e).click(function(){ const key = $(this).attr("name"); const value = $(this).val(); variantMap[key] = value sessionStorage.setItem("variant_map", JSON.stringify(variantMap)) const variant_map_array = Object.values(variantMap); for (let i = 0; i < variants.length; i++) { const currVariant = variants[i]; if (JSON.stringify(currVariant.options) === JSON.stringify(variant_map_array)) { const price = currVariant.price; let money = prettyMoney({ currency: "$", position: "before", decimals: "fixed", decimalDelimiter: ".", thousandsDelimiter: "," }, parseInt(price.toString().slice(0, -2))); $("#prod-price").text(money); } } }) }); $(".add-to-cart").click(function() { const e = this; let data = {}; $(e).attr("disabled", "disabled"); $(e).text("Adding to cart"); if(isSub){ const interval_unit = sessionStorage.getItem("interval_unit"); const interval_frequency = sessionStorage.getItem("interval_frequency") const qty = $("#quantity").val(); const variant_map = sessionStorage.getItem("variant_map"); const variant_map_array = Object.values(JSON.parse(variant_map)); let variant_id = null; for (let i = 0; i < variants.length; i++) { const currVariant = variants[i]; if (JSON.stringify(currVariant.options) === JSON.stringify(variant_map_array)) { variant_id = currVariant.id; } } console.log('variant_id', variant_id); data = { "id": variant_id, "quantity": qty, "purchase_type": "autodeliver", "properties": { "shipping_interval_frequency": interval_frequency, "shipping_interval_unit_type": interval_unit, } } }else{ const qty = $("#quantity").val(); const variant_map = sessionStorage.getItem("variant_map"); const variant_map_array = Object.values(JSON.parse(variant_map)); let variant_id = null; for (let i = 0; i < variants.length; i++) { const currVariant = variants[i]; if (JSON.stringify(currVariant.options) === JSON.stringify(variant_map_array)) { variant_id = currVariant.id; } } data = { "id": variant_id, "quantity": qty, } } console.log('data', data); jQuery.ajax({ type: 'POST', url: '/cart/add.js', data: data, dataType: 'json', success: function() { // begin peartree - ab modal.style.display = "none"; window.SLIDECART_UPDATE(); window.SLIDECART_OPEN(); // end peartree - ab $(e).text("Added to cart"); $(e).removeAttr("disabled"); }, error: function(xhr,status,error) { console.log(error) } }); }) }); } function handleAddToCart (productHandle) { $(".content-wrapper").css({"display": "none"}); $(".modal-content-ct").css({"height": "600px"}); $(".spinner-wrapper").css({"display": "flex"}); $(".lds-dual-ring").css("display", "inline-block"); jQuery.getJSON(`/products/${productHandle}.js`, function(product) { $("#quantity").attr("value", 1); $(".modal-content-ct").css({"height": "auto"}); $(".spinner-wrapper").css({"display": "none"}); $(".lds-dual-ring").css("display", "none"); $(".content-wrapper").css("display", "flex"); const price = product.price; const options = product.options; const variants = product.variants; $("#prod-title").text(product.title); $("#prod-url").attr("href", product.url); $("#prod-img").attr("src", product.featured_image).attr("alt", product.media[0].alt); let money = prettyMoney({ currency: "$", position: "before", decimals: "fixed", decimalDelimiter: ".", thousandsDelimiter: "," }, parseInt(price.toString().slice(0, -2))); $("#prod-price").text(money); $(".form-btns").html(""); var html = "" for(let i = 0; i < options.length; i++){ const crValue = options[i]; var htmlInner = "

"; $(".form-btns").append(htmlInner); var htmlInner2 = ""; const crValueInner = crValue.values; for (let j = 0; j < crValueInner.length; j++){ const optionVal = crValue[j]; const isChecked = (j == 0)? 'checked': ''; const currentValue = crValueInner[j]; if(j == 0) { variantMap[crValue.name] = currentValue; sessionStorage.setItem("variant_map", JSON.stringify(variantMap)) } htmlInner2 = htmlInner2 + ""; } $(`#label-block-${i}`).html(htmlInner2) } $('.variant-btns').each(function(i, e){ $(e).click(function(){ const key = $(this).attr("name"); const value = $(this).val(); variantMap[key] = value sessionStorage.setItem("variant_map", JSON.stringify(variantMap)) const variant_map_array = Object.values(variantMap); for (let i = 0; i < variants.length; i++) { const currVariant = variants[i]; if (JSON.stringify(currVariant.options) === JSON.stringify(variant_map_array)) { const price = currVariant.price; let money = prettyMoney({ currency: "$", position: "before", decimals: "fixed", decimalDelimiter: ".", thousandsDelimiter: "," }, parseInt(price.toString().slice(0, -2))); $("#prod-price").text(money); } } }) }); $(".add-to-cart").click(function() { const e = this; $(e).attr("disabled", "disabled"); $(e).text("Adding to cart"); const qty = $("#quantity").val(); const variant_map = sessionStorage.getItem("variant_map"); const variant_map_array = Object.values(JSON.parse(variant_map)); let variant_id = null; for (let i = 0; i < variants.length; i++) { const currVariant = variants[i]; if (JSON.stringify(currVariant.options) === JSON.stringify(variant_map_array)) { variant_id = currVariant.id; } } jQuery.ajax({ type: 'POST', url: '/cart/add.js', data: { "id": variant_id, "quantity": qty, }, dataType: 'json', success: function() { $(e).text("Add to cart"); $(e).removeAttr("disabled"); }, error: function(xhr,status,error) { console.log(error) } }); }) }); } function addItemToCart(variant_id, qty, frequency, unit_type) { data = { "id": variant_id, "quantity": qty, "properties": { "shipping_interval_frequency": frequency, "shipping_interval_unit_type": unit_type, "subscription_id": "26284", } } jQuery.ajax({ type: 'POST', url: '/cart/add.js', data: data, dataType: 'json', success: function() { }, error: function(xhr,status,error) { console.log(error) } }); }

Signature Organic Coffee | Shop Now | Higher Grounds Trading Co. (2024)
Top Articles
Latest Posts
Article information

Author: Nathanael Baumbach

Last Updated:

Views: 6685

Rating: 4.4 / 5 (55 voted)

Reviews: 86% of readers found this page helpful

Author information

Name: Nathanael Baumbach

Birthday: 1998-12-02

Address: Apt. 829 751 Glover View, West Orlando, IN 22436

Phone: +901025288581

Job: Internal IT Coordinator

Hobby: Gunsmithing, Motor sports, Flying, Skiing, Hooping, Lego building, Ice skating

Introduction: My name is Nathanael Baumbach, I am a fantastic, nice, victorious, brave, healthy, cute, glorious person who loves writing and wants to share my knowledge and understanding with you.