Agriculture Appreciation

Sponsorships Levels & Benefits

Sponsorship Levels

Barnraiser Sponsor

$700

Cultivator Sponsor

$250

Grower Sponsor

$100

Donate Door Prizes

$25+
Social media & Newsletter recognition  
Event signage  
Opportunity to include swag bag items  
Save the date card distributor    
Booth space    
Tickets 3 2    
$25 Chamber Cheque donation      
30-second social media commercial      
Save the date sponsor listing      
Provide prizes

General Information

  • Date & Time: Tuesday, February 23 — 5:00 p.m. to 7:00 p.m.
  • Location: Schenk Building - Ellis Co. Fairgrounds — 1344 Fairground Rd. Hays, KS 67601
  • Audience: Local farmers & ranchers
  • Sponsorship Deadline: February 5th
  • Description: The Annual Ag Appreciation event honors the hard work of local farmers and ranchers. Guests receive a complimentary meal, dessert, drinks, swag, and prizes.

Effect on Business

Brand Visibility

  • Catalyze brand awareness to approximately 150 Ellis County local farms, ranchers, and other agriculture professionals through merchandise or in-person connections.
  • Receive verbal brand recognition through event program.
  • Marketing materials before, during, and after the event will highlight your company’s participation.
  • Maximize your attendance at the event through your business’ booth.
  • Barnraiser sponsors receive exclusive opportunities through a 30-second social media commercial, that will also be played during the event, with a $25 Chamber Cheque being provided to an attendee during the prize drawing and a sponsor listing on the save the date card.

Community Engagement

  • Upgrading to Cultivator and Barnraiser Sponsor levels allows for a booth space and event tickets. This allows for face-to-face networking opportunities with educators.
  • Having a booth space will allow for many agriculture professionals to see you and your set up as soon as they check in to the event.
  • Build relationships, promote your services, and show support

Advocacy Impact

  • Help recognize Ellis County agriculture professionals who grow our food and shape our rural communities
  • Create relationships with local farmers and ranchers showing involvement for Kansas agriculture

Interested in Sponsoring This Event?

Complete the sponsorship interest form below to let us know you're interested in sponsoring Ag Appreciation. A member of the Chamber team will contact you regarding availability, sponsorship benefits, and next steps.


Explore More Sponsorship Opportunities

Looking for another way to connect with the Hays business community? Here are four additional sponsorship opportunities you may be interested in.

.sponsor-form{ text-align:center; margin:30px 0 50px; } .sponsor-form iframe{ border:0; max-width:100%; } #related-sponsorships{ margin:30px 0 40px; } .related-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:25px; } .related-card{ border:1px solid #e6e6e6; border-radius:4px; overflow:hidden; background:#fff; display:flex; flex-direction:column; height:100%; cursor:pointer; opacity:0; transform:translateY(20px); animation:fadeUp .6s forwards; transition:transform .25s ease, box-shadow .25s ease; } .related-card:hover{ transform:translateY(-5px); box-shadow:0 10px 18px rgba(0,0,0,.12); } .related-card img{ width:100%; height:155px; object-fit:cover; display:block; } .related-placeholder{ height:155px; background:#f3f3f3; } .related-card .caption{ padding:15px; display:flex; flex-direction:column; justify-content:space-between; flex:1; } .related-card .caption a:last-child{ margin-top:auto; } .related-card:nth-child(1){animation-delay:.05s;} .related-card:nth-child(2){animation-delay:.15s;} .related-card:nth-child(3){animation-delay:.25s;} .related-card:nth-child(4){animation-delay:.35s;} @keyframes fadeUp{ to{ opacity:1; transform:none; } } @media(max-width:992px){ .related-grid{ grid-template-columns:repeat(2,1fr); } } @media(max-width:600px){ .related-grid{ grid-template-columns:1fr; } } window.addEventListener("load", function(){ const container = document.getElementById("related-sponsorships"); if(!container) return; fetch("/members/sponsorship-opportunities") .then(r => r.text()) .then(html => { const doc = new DOMParser().parseFromString(html, "text/html"); let cards = Array.from(doc.querySelectorAll(".view-grid-listing .views-row")); // Remove advertisements or promotional cards cards = cards.filter(card => { const title = (card.querySelector(".caption")?.textContent || card.textContent) .toLowerCase(); return !( title.includes("advertise") || title.includes("advertising") || title.includes("ad space") || title.includes("become a sponsor") || title.includes("join the chamber") ); }); if(!cards.length){ container.innerHTML="

Unable to load sponsorship opportunities.

"; return; } const current = location.pathname.replace(/\/$/,""); const available = cards.filter(card => { const link = card.querySelector("a.thumbnail"); return link && link.pathname.replace(/\/$/,"") !== current; }); // Shuffle cards for(let i = available.length - 1; i > 0; i--){ const j = Math.floor(Math.random() * (i + 1)); [available[i], available[j]] = [available[j], available[i]]; } container.innerHTML = '

'; const grid = container.querySelector(".related-grid"); available.slice(0,4).forEach(card => { card.classList.add("related-card"); if(!card.querySelector("img")){ const thumb = card.querySelector(".thumbnail"); if(thumb){ const placeholder = document.createElement("div"); placeholder.className = "related-placeholder"; thumb.prepend(placeholder); } } const link = card.querySelector("a.thumbnail"); if(link){ card.addEventListener("click", function(e){ if(e.target.closest("a")) return; window.location = link.href; }); } grid.appendChild(card); }); }) .catch(function(){ container.innerHTML="

Unable to load sponsorship opportunities.

"; }); });