Convertkit Event Listener

Using Google Tag Manager and this event listener, you can track ConvertKit form successful submission as conversion in your analytics tools (Google Analytics, Mixpanel, Piwik Pro, Segment, etc.) and advertising platform (Google Ads, Facebook Pixel, etc.)

How to track Convertkit Form Submission with google tag manager

Enhance your marketing data with ConvertKit conversion data. If you use the ConvertKit form for lead capturing, you can track successful form submissions as conversions using GTM and this ConvertKit event listener code.

Start by creating a custom HTML tag type, where you’ll be pasting the listener code there.

This code pushes a dataLayer event when a user successfully submits a Convertkit form with the event name [converkitform.submit]

The next step is to create a custom event trigger using that event name, this trigger will be used to fire your marketing tags/pixels.

To capture the form details like form ID and user ID in the form database, you can use the following dataLayer variables;

[convertKitFormId] –> returns the ConvertKit form ID

[convertkitUserId] –> returns the userID in the form database

with this you can enrich your marketing data in your analytics and advertising platform.

<script type="text/javascript">
(function() {
document.addEventListener("submit", function(a) {
a.target.getAttribute("data-sv-form") && window.dataLayer.push({
event: "converkitform.submit",
convertKitFormId: a.target.getAttribute("data-sv-form"),
convertkitUserId: a.target.getAttribute("data-uid")
})
}, !0)
})();
</script>

Video of how to use the listener

Related Event Listener

Convertflow

Seamlessly measure Convertflow users’ interactions and fire your marketing tags/pixels on conversions using this event listener.

GetGist or Convertfox

Fire your marketing tags/pixels on GetGist interactions and conversions using Google Tag Manager and dataLayer provided by this listener

Hubspot Form

Trigger your conversion pixels on submission of Hubspot forms, using this event listener you can measure when users submit a Hubspot form.

download the google tag manager recipe for tracking Convertkit Form Submission

we make you smarter with data

made with ❤️

The DumbData Team