Switching to CoHost?

Our team will personally migrate your podcast to CoHost to ensure you don’t lose any data, insights, or information.

Get in touch with our team.

TRUSTED BY:
Thank you! Your submission has been received, we'll be in touch shortly!
Oops! Something went wrong while submitting the form.
/* UTM tracking code * Takes any query parameters that have affiliate tracking * and adds them to any links to our app. * Note: app links need to have “app-link” css class */ var urlParams = new URLSearchParams(window.location.search); var query = urlParams.toString(); if (query.length > 0) { var queryParams = ‘?’ + query var appLinks = document.getElementsByClassName(‘app-link’); for (i = 0; i < appLinks.length; i++) { appLinks[i].href += queryParams; } }