Sterling Elza + Cole Barnhill: The Panhandle Pl...
From the venue:
Event Description
Sterling Elza is a Red Dirt singer/songwriter raised deep in the Texas Panhandle. Born into a ranching family that already had 3 musicians, Sterling took to music from the beginning with guitar lessons starting at the age of 5. Drawing influences from his parents' music which could range from "old school Red Dirt" to top 40 country all the way to grunge and classic rock, Sterling began his musical journey. Sterling continued taking guitar lessons until he moved to Florida where he played tennis at the IMG Academy. After the passing of his uncle - "Big Ster" - and 3 years in Florida, Sterling decided it was time to make a change and fully commit to a life and career in music. A move back to Texas seemed like the perfect choice for a budding songwriter. Now calling New Braunfels home, Sterling launced into the Red Dirt scene with the 2024 release of his debut album, Simpler Days. His album cracked the Top 25 Rock Albums on Apple, and the following week, his single Next Week entered the Top 40 Apple Rock Songs chart. The love of music and the passion to perform drive him to continue perfecting his craft and learning from some of the best in the business. With a five-piece band and a wall of sound, it won't be long before Sterling Elza is a household name in Red Dirt music.Cole Barnhill - Hailing from what he proudly calls “the music capital of the world,” Lubbock, TX, Cole Barnhill kicked off his music career at just 17 years old—cutting his teeth in local bars with his band. In the years since, he’s carved out a signature Texas Rock sound that blends raw energy, melodic vocals, and heavy guitars. The result? Millions of streams across platforms and a fiercely loyalfanbase that stretches far beyond state lines.Known for their electrifying live performances, Cole and his band deliver a high-octane, no-frills rock show that leaves a lasting impression. Whether it’s a packed club in Austin or a festival crowd in Oklahoma, they bring unmatched energy that gets every crowd on their feet.
After Cole exploded onto the scene with his first collaboration, “Daydreams” with giants in the scene, Treaty Oak Revival. Cole is now rolling out his first EP since his debut album, “Welcome To My World”. The first single offers a glimpse of what’s to come “Run,” a gritty, guitar-driven anthem that showcases Cole’s sharp songwriting and undeniable momentum.
With a fresh sound in an oversaturated scene, Cole Barnhill is quickly becoming a name to watch in modern rock and Texas Red Dirt country—and he’s just getting started.
Event Organizer
body.scroll-disabled {
overflow: hidden;
}
#message-overlay {
position: fixed;
display: none;
width: 100%;
height: 100%;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.8);
z-index: 999;
overflow: auto;
}
#message-modal {
position: relative;
top: 7%;
width: 80%;
max-width: 400px;
margin: auto;
background-color: white;
margin-bottom: 50px;
}
#message-modal .panel-heading {
text-align: left;
}
#message-modal .contact-field {
text-align: left;
}
#message-modal label {
margin: 1em 0 0 0;
padding: 0;
}
#message-modal textarea {
resize: vertical;
min-height: 5.5em;
}
#message-modal .ft-form-error {
border: 1px solid #cd252f;
}
#message-modal .close-contact {
cursor: pointer;
}
#message-overlay .panel-footer {
overflow: hidden;
}
#message-modal #cancel-message {
float: left;
background: none;
border: none;
color: darkgrey;
}
#message-modal #cancel-message:hover, #message-modal #cancel-message:active {
color: black;
}
#message-modal #submit-message {
float: right;
transition: all 0.25s;
width: 144px !important;
}
#message-modal #submit-message.btn-success {
opacity: 1;
}
.error-message {
display: none;
color: #b94a48;
font-size: 1em;
}
#message-form > .error-message {
text-align: center;
}
.contact-field .error-message {
text-align: right;
}
Send a message to Smith's Olde Bar
Your Email Address
Message
CANCEL
SEND MESSAGE
$(document).ready(function() {
pageBody = $('body');
modal = $('#message-overlay');
email = $('#message-email');
body = $('#message-body');
submit = $('#submit-message');
cancel = $('#cancel-message');
formErrorField = $('#message-form > .error-message');
contactToken = '';
// open modal functionality
function showModal() {
pageBody.addClass('scroll-disabled');
modal.slideDown();
}
$('#message-button').click(function(e) {
e.preventDefault();
showModal();
});
// close modal functionality
function hideModal(callback = function() {}) {
pageBody.removeClass('scroll-disabled');
modal.slideUp(function() {
callback();
});
}
$(window).keydown(function(e) {
if (e.keyCode == 27) {
hideModal();
}
});
$('.close-contact').click(function() {
hideModal();
});
pageBody.click(function(e) {
if (modal.is(':visible')) {
if ($(e.target).attr('id') == 'message-overlay') {
hideModal();
}
}
});
// field validation
fieldTouched = {
'message-email': false,
'message-body': false
};
regex = {
'message-email': /((?!https?:\/\/).)*$/}
errors = {
'message-email': {
'blank': 'Please provide a valid contact email address.',
'format': 'Please provide a valid contact email address.'
},
'message-body': {
'blank': 'Please enter a message.',
'format': 'Please remove "http://" or "https://" from any links.'
}
};
function validate(field, value) {
if (inputIsBlank(value)) {
return errorsfield'blank';
} else if (inputIsInvalid(field, value)) {
return errorsfield'format';
}
}
function inputIsBlank(value) {
return value.replace(/\s/g, '').length == 0
}
function inputIsInvalid(field, value) {
return value.split(/\s/).join('').match(regexfield) == null;
}
function markAsInvalid(element, message) {
$(element).addClass('ft-form-error');
$(element).next().text(message);
$(element).next().slideDown();
submit.addClass('disabled');
}
function successfulValidation(element) {
markAsValid(element);
if (email.val().length > 0 && body.val().length > 0) {
if ($('#message-email.ft-form-error, #message-body.ft-form-error').length == 0) {
submit.removeClass('disabled');
}
}
}
function markAsValid(element) {
$(element).removeClass('ft-form-error');
$(element).next().slideUp();
}
$('#message-email, #message-body').keyup(function() {
var field = $(this).attr('id');
var value = $(this).val();
| value.length > 0; |
| if (fieldTouchedfield) { |
| var error = validate(field, value); |
| if (error != null) { |
| markAsInvalid(this, error); |
| } else { |
| successfulValidation(this); |
| } |
| } |
| }); |
| // form submission |
| function disableForm() { |
| $('#submit-message, #cancel-message').addClass('disabled'); |
| modal.find('input, textarea').attr('disabled', true); |
| } |
| function enableFields() { |
| modal.find('input, textarea').removeAttr('disabled'); |
| submit.html('SEND MESSAGE'); |
| cancel.removeClass('disabled'); |
| } |
| function enableForm() { |
| submit.removeClass('disabled'); |
| enableFields(); |
| } |
| function scheduleFormReset() { |
| setTimeout(function() { resetForm() }, 1250); |
| } |
| function resetForm() { |
| hideModal(function() { |
| email.val(); |
| body.val(); |
| submit.removeClass('btn-success'); |
| enableForm(); |
| }); |
| } |
| submit.click(function() { |
| submit.html('<i class="fa fa-cog fa-spin"></i>'); |
| formErrorField.slideUp(); |
| disableForm(); |
| var emailVal = $('#message-email').val(); |
| var bodyVal = $('#message-body').val(); |
| var yourNameVal = $('#your_name').val(); |
| $.ajax({ |
| url: '/organizations/7359e059-a585-421e-9e40-baf4956ba800', |
| type: 'POST', |
| dataType: 'json', |
| data: { |
| 'email': emailVal, |
| 'body': bodyVal, |
| 'your_name': yourNameVal, |
| 'contact_token': contactToken, |
| 'authenticity_token': '/beDJ+vHIhEDuy4S+oUNxLvrf8v4/ehOQLW9ZcmzdFpOgFlK+Obf7AlW4yG+yFt7LWbfxa92LKlQE6joDnuGoA==' |
| }, |
| success: function(data) { |
| if (data'contact_token' != null) { |
| contactToken = data'contact_token'; |
| } |
| if (data.success) { |
| submit.html('<i class="fa fa-check-circle"></i>'); |
| submit.addClass('btn-success'); |
| scheduleFormReset(); |
| } else { |
| var errors = data'errors'; |
| var emailError = errors'email'; |
| var bodyError = errors'body'; |
| var formError = errors'form'; |
| if (emailError != null) { |
| markAsInvalid(email, emailError); |
| } |
| if (bodyError != null) { |
| markAsInvalid(body, bodyError); |
| } |
| if (emailError null && bodyError null) { |
| formError = formError |
formErrorField.text(formError);
formErrorField.slideDown();
enableForm();
} else {
enableFields();
}
}
},
error: function() {
formErrorField.text('There was a problem sending your message. Please try again.');
formErrorField.slideDown();
enableForm();
}
});
});
});
Contact Organizer
Smith's Olde Bar
Dalton Dover, Bryce Leatherwood, Will Moseley &...
Sat, March 21, 2026
6:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
Jake Sayer & Friends with Dirty 930
Sat, March 21, 2026
8:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
The Elements - Hypotheticals Album Release Show...
Thu, March 26, 2026
8:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
Annual Battle for the Brain & Daughters Agains...
Fri, March 27, 2026
8:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
Olivia Wolf w/ Wyatt Edmondson + Conrad Moore
Fri, March 27, 2026
8:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
Kody West
Sat, March 28, 2026
8:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
See More Events from This Organizer
Sterling Elza + Cole Barnhill: The Panhandle ... | 04/17/2026 8:00 PM