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)

FAQs

What happened to Brew Traverse City? ›

The shop saw an abrupt closing and an eventual message was sent out to the Traverse City community saying that Brew had closed due to “unexpected staffing issues”. With this, Brew would have renovations and a complete rehaul of the old coffee hub.

What is signature coffee? ›

What is a “signature” blend? Typically, when roasters and coffee shops create blends, they will offer a house or “signature” blend. “A signature blend is a uniquely crafted coffee blend made with single origin beans,” Christos explains.

What happened to Michigan Brewing Company? ›

The Michigan Brewing Company was foreclosed upon and its assets sold at auction.

What is the oldest Cleveland Breweries? ›

Charles Gehring, who opened his brewery in 1852, is credited with having produced Cleveland's first lager beer. By 1875 Gehring, Isaac Leisy (see LEISY BREWING CO.), Jacob Mall (see GUND BREWING CO.), and Leonard Schlather had all established breweries that would persist into the 20th century.

Who bought Long Trail Brewery? ›

Mass. Bay Brewing Company, which owns Harpoon Brewery in Windsor, has agreed to buy Long Trail Brewing Company, producers of ales under the Long Trail, Otter Creek and Shed brands, according to the co-founder and chief executive officer of Mass.

Who owns Cuppa Joe Traverse City? ›

Sandi Daley - Owner - Cuppa Joe, LLC | LinkedIn.

What happened to Dark City brewery? ›

The decision to close Dark City Brewing Company, which opened in 2016, was all about family, said former owners Stephen and Michael Mary Bohacik. Entering 2020, they were navigating a balance of raising their daughter and running the business. Then when March rolled around, the whole brewery shut down due to COVID-19.

Who is the owner of the Suburban Brew? ›

Our brewer, Tony Dichiera, has a vision to create a craft beer brand that is part of its community. One that listens to it's drinkers and works hard to brew for them. Sharing a beer or three along the way.

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.