Hi! Does Gravity Forms offer any solutions or add-ons for integrating a Thank You Page with Google Ads?
Specifically, after a form completion, Google Ads wants a Thank You Page to include data entered from the user form, such as email address, as part of the Thank You Page source code.
I have the Thank You Page created, and Google Ads is using that page as proof of an ad conversion, that is, confirming a form completion counted as a standard conversion.
Taking that one step further, Google Ads want to collect Enhanced Conversions where they verify the email address the user entered is in fact a user who clicked on a Google Ad. To do this, the email address must be parsed into the Thank You Page.
The encrypted user data will work only if it is hashed in SHA-256 format. I found this add-on Gravity Forms Post Content Merge Tags | Gravity Perks by Gravity Wiz which would place the user data onto the Thank You Page but not hashed in SHA-256 format.
The Thank You Page would ultimately pull data from the Gravity Form and it would appear in the page source like this:
// Implement
<script>
gtag('set', 'user_data', {
"email": {{ yourEmailVariable }}
});
</script>
With “yourEmailVariable” pulling from the Gravity Form. See this for more info: Set up enhanced conversions for web using the Google tag - Google Ads Help
Is there a way to do this with Gravity Forms or an add-on?