To properly track form submissions from Google Ads (AdWords) in Webflow, you need to accurately install the Google Ads conversion tracking snippet and connect it to your form submission. Adding the tag globally is just step one — the form needs a custom event trigger too.
<head>
tag” section, paste your global site tag (gtag.js) from Google Ads. This loads the tracking script on every page.<!-- Global site tag (gtag.js) - Google Ads: XXXXXXXX -->
You also need the Google Ads conversion event snippet, which looks like this:gtag('event', 'conversion', {'send_to': 'AW-XXXXXXX/XXXXXXXX'});
.
Webflow does not support JavaScript-based form hooks natively, so to trigger the conversion properly, use one of the following approaches:
If your Webflow form redirects to a separate “Thank You” page after submission:
</body>
tag of the “Thank You” page.</body>
tag.This ensures the conversion is triggered only after a successful form submission.
If you're using an in-page confirmation, add the script to Website Settings:
Go to Project Settings > Custom Code > Before </body>
tag and place a script like:
```javascript
```
Replace AW-XXXXXXX/XXXXXXXX with your actual Google Ads conversion ID and label.
Make sure:
After inserting the code:
To track Google Ads form conversions in Webflow: