Events Integration

Venue users can integrate their website with our ticketing and events listing platform

Ryan Kim avatar
Written by Ryan Kim
Updated over a week ago

Venues working with GigFinesse can integrate seamlessly with our sister ticketing and events listing platform, Someday.fm. Through a venue-specific events page hosted directly on Someday.fm or an events widget that can be hosted on your venue's site, GIgFinesse provides easy ways of displaying upcoming programming to your venue's patrons.

Please note: the GigFinesse team will have to manually set up your Someday profile in order for both types of integration to work. Please reach out to us at support@gigfinesse.com if you’re interested.

Someday Event Page

You can link directly to your venue's page on Someday on your website. You can find this link at your venue profile page at https://app.gigfinesse.com/venues/profile/.

Widget Integration

By using the Someday Events Widget, upcoming events booked via GigFinesse can appear automatically on your venue’s website. Below is a quick guide to implementing the widget.

On your website, please create a div block with the id of “root” and paste in the following code snippet into whichever page you’d like. You can find the VENUE_CODE in your venue profile page at https://app.gigfinesse.com/venues/profile/.

<link rel="stylesheet" href="https://widgets.someday.fm/style.css" />
<script type="text/javascript" src="https://widgets.someday.fm/main.js"></script>
<script>
function l() {
if (window.SomedayInitialized) {
return;
}
window.SomedayInitialized = true;
window.SomedayWidget({ id: "root", venueCode: `VENUE_CODE` })
}

if (document.readyState === 'complete') {
l();
} else if (window.attachEvent) {
window.attachEvent('onload', l);
} else {
window.addEventListener('DOMContentLoaded', l, false);
window.addEventListener('load', l, false);
}
</script>

To customize the look of the Events Widget to your website's particular style, please contact our team at support@gigfinesse.com and we’ll walk you through the process. Likewise, if you're having any issues with the widget setup, please let us know and we can assist you.

Did this answer your question?