- Getting Started
- Field Types
- Email Notifications
-
Integrations
- MailerLite
- Create User Accounts with Convert Forms
- MailChimp
- HubSpot
- GetResponse
- AcyMailing
- Content App
- Webhooks Addon
- Facebook Meta Pixel
- Google Adwords
- Sync submissions with your favorite app
- Drip Ecommerce CRM
- Google Analytics
- Constant Contact
- SalesForce Web-to-Lead
- IContact
- Zoho CRM
- Elastic Email
- Zoho Campaigns
- Zapier
- ConvertKit
- Brevo (Sendinblue)
- Campaign Monitor
- AWeber
- ActiveCampaign
-
Functionality
- Scroll the Page to the Top When a Long Form is Submitted
- Display Submissions Count for a Specific Form
- Populate Drop Down, Radio Buttons or Checkboxes with a CSV File
- Automatically Delete Submissions Older Than X Days
- Silently POST Submitted Data to Any API or URL
- Automatically Save Each Submission to a JSON file
- Authenticate and Login a User with a Custom Joomla Form
- Auto-Populate a Form Field with an Article Data
- Add a placeholder text to a Dropdown
- Create Multilingual Forms in Joomla
- Create a custom Joomla User Registration Form
- Redirect User to a URL After Form Submission
- Export and Import Forms across different Websites
- Export Form Submissions to CSV
- Convert Forms
- Styling and Customization
- Payment Forms
- Advanced Features
- Developers
- Troubleshooting and Support
-
Spam, Security & Compliance
- Enforcing a Custom Password Policy in Convert Forms
- Add Cloudflare Turnstile to your Joomla Form
- Implement the Iubenda Consent Database in Joomla with Convert Forms
- Add Custom Validations to Fields and Forms
- Add Math Captcha to your Form
- Prevent a Field From Saving in the Database
- Add hCaptcha to your Form
- Enable Double Opt-in
- Allow Form Submissions in Specific Date Range
- Ensure a Unique Value is Entered Into a
- Block Form Submissions Containing Profanity (Bad Words)
- Block Email Addresses or Email Domains
- Native Convert Forms Anti-spam Protection with Honeypot
- Add reCAPTCHA to your Form
- Create GDPR Compliant Forms
Track Form Conversions with Google Adwords
There are two possible solutions for this:
1. Import Google Analytics Event to Google Adwords
For this solution, you will use the Convert Forms Google Analytics addon to track form events as Goals in your Google Analytics account which you can later import to Google Ads.
- In your form settings, go to Behavior -> Google Analytics Tracking and enable the Google Analytics Tracking option. To learn more details visit the How to Track Form Events with Google Analytics guide.
- Add the Conversion event as a Goal in your Google Analytics account.
- Sign in to Google Analytics
- Click Admin, navigate to Goals section and click New
- In the Goal setup (1st step) select Custom and click Continue
- In the Goal Description (2nd step), specify a goal name, select Event in the Type option and click Continue.
- In the Goal Details (3rd step), set the Action option to Conversion
- Click Save
- Link Google Adwords and Google Analytics account, and import the goal to Google Adwords. This page shows you how to do this.
Notice: Goals are not imported instantly. It could take a couple of days for your goals to become available on Ads.
2. Fire Google Ads Conversion Tracking with Google Tag Manager
This method requires a little bit of extra to work and you will need to be familiar with the main Google Tag Manager concept.
- Log into your Google Tag Manager account
- Create a new Custom Event Trigger to track form submissions events. Eg: myFormSubmission.
- Create a Google Ads Conversion Tracking Tag and choose the Custom Event as the firing trigger.
- Fire the event when the form is submitted using the following Javascript code.
<script>
var form = document.querySelector('#cf_1');
form.addEventListener('success', function(event) {
dataLayer.push({
'event': 'myFormSubmission'
});
});
</script>
The code above can be placed into your form > Design > Advanced > Custom Code.
Last updated on Oct 29th 2024 14:10