Billy Allen + The Pollies
From the venue:
Event Description
There is a ferocious Southern engine inside of Billy Allen + The Pollies’ debut album Black Noise. It thrums to life atop a classic rock chassis and expertly weaves in and out of gospel, grunge, funk and soul along its eleven-song journey. From the explosive top of the album (a liberating anthem of self-worth called “All of Me”) to the spiritually haunting final track (the wurlitzer fueled “Go on Without Them”) Black Noise is a genre-defiant haymaker that lands.
The band is a hybrid of four piece rock outfit The Pollies and fellow Alabamian, and frontman, Billy Allen. The story of what fused Allen and The Pollies is one that begins in a bar 8 years ago. This particular bar was on Allen’s gig circuit and it just so happens to be where Jay Burgess (founder of The Pollies) was having a drink that evening. While there was intrigue and potential in that first chance meeting, the two would remain ships in the night, each building their own careers, until years later when the stars would align at FAME studios in Muscle Shoals. As the story goes, both Allen and The Pollies, who were all occasional session musicians at Fame, were finally in the room together and the track on deck was Little Richard’s “Greenwood, MS”. To hear Allen retell this part of the story is to hear a man talk about the beginnings of a priceless friendship. “There was an immediate romantic musical connection,” Allen said. “This is my band.” To hear Burgess tell it, the feeling was mutual. Over the subsequent year, the two groups rehearsed, toured, wrote, and gelled together under the moniker Billy Allen + The Pollies. The joining of Billy and Jay (along with the other charter members of The Pollies: Spencer Duncan, Jon Davis & Clint Chandler) was like the clicking of a dislocated bone back into true.
Named after a theoretical sound bomb with the power to destroy whole cities, Black Noise was written almost entirely during the pandemic, beginning as voice memos between Burgess and Allen. With the lockdown in full swing, the musicians became each other’s micro-community, and voice memos progressed to writing sessions in Jay’s garage, and continued to full band rehearsals at Jay’s Greenhill, Alabama, sanctuary Studio 144. When the time to cut the record arrived, they tapped long-time friend and Grammy winning musician Ben Tanner to produce and engineer. Tanner (co-owner of SingleLock Records and former Alabama Shakes keys player) brought the band to Sun Drop Sound in Florence where the bulk of the recording was done. The band was so deeply meshed that the album they captured between April and November of 2021, other than a small overdub section, was recorded fully live, without a click, and 3 takes or less per song.
Listening to Black Noise feels like walking on the alien terrain of a new genre. It sounds like garage grunge by way of Jackie Wilson. The very same kerchief Billy Allen uses to wipe sweat from his brow on stage could be carrying DNA from Wilson Pickett, Joe Cocker, D’Angelo, Ziggy Stardust, or any of the Spiders from Mars. Theirs is a gritty and trailblazing sound. They are a band full of smiling time travelers, able to visit and draw from a multitude of eras and styles. Black Noise is an album that devastates you to the point of remembering why you love music. This is the type of band you root for. You can’t help it. They’re that damn good.
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': 'BMxwT+2qBZofVhPi8SzO6d1/Hs8oySc0v+P/1ddDN0DlnJuel8/KM6/V6tXA7sYL56O84aPDTNcdMhKVNAwkPg==' |
| }, |
| 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
Frankly Scarlet's Holiday Ball
Sat, December 13, 2025
8:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
A Very Menu Holidaze with MENU featuring Dear K...
Sat, December 13, 2025
8:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
Holiday Cabaret ft. Hari Gopal, John Newsome, T...
Wed, December 17, 2025
7:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
The Asymptomatics with special guests The Midkn...
Fri, December 19, 2025
8:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
David Ryan Harris & The Handsome Gentlemen wsg ...
Sat, December 20, 2025
8:00 PM
Music Room at Smith's Olde Bar
Atlanta, GA
BHAN with special guests Kbandtana, Lucca Melod...
Sat, December 20, 2025
8:00 PM
Atlanta Room at Smith's Olde Bar
Atlanta, GA
See More Events from This Organizer
Billy Allen + The Pollies | 02/20/2026 8:00 PM