-
- Tracking Form Lead Source
- Show a Form Only to Logged-In Users
- How to Increment a Count on Each Form Submission
- Adding an “Other” Option
- Adding a Unique ID to Each Form Submission
- Show or Hide Form Fields Based on User Joomla User Group
- Disabling Browser Autocomplete for Form Fields
- 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 field
- Create Multilingual Forms in Joomla
- Redirect User to a URL After Form Submission
- Importing and Exporting Forms
- Exporting Form Submissions
- Display Convert Forms in a popup
-
- How to Create a Quiz Form
- Show Confirmation Popup After Submission
- Using the Conditional Content Shortcode in Convert Forms
- Copy Value From One Field to Another
- Working with Tasks
- Exporting Form Submissions with a Webhook URL
- Conditional Fields
- PDF Form Submissions
- Working with Input Masks
- Field Calculations
- Auto-Populate Form Fields Using Query String
- Smart Tags
-
- Enable Minimum Time to Submit
- Restrict Form Submissions Based on IP
- 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 Field
- Block Form Submissions Containing Profanity (Bad Words)
- Block Email Addresses or Email Domains
- Honeypot
- Setting Up Google reCAPTCHA
- Create GDPR Compliant Forms
Embed a Form in an External Website
Sometimes you may want to display a form on a website that does not run Joomla. For example, you may have a non-Joomla website but still want to use Convert Forms so that all submissions are stored in your Joomla site’s database. This allows you to manage all your leads or registrations in one central location without needing separate systems. Another common scenario is when you have multiple Joomla websites, but Convert Forms is installed only on one of them. In this case, you might want to collect submissions from the other websites and store them in the same database for easier management.
By embedding the form with an iframe, you can share it anywhere while keeping all data centralized.
How to Embed Convert Forms in an iFrame
First, create an article in Joomla and add the form to it using either the shortcode or the module method. Once the article is published, you can obtain its clean form URL.
Next, navigate to the article on your front end and append ?tmpl=component to the end of the URL. This will remove the site’s template and display only the form. For example, if your article URL is https://example.com/my-article, the clean form URL would be
https://example.com/my-article?tmpl=component.
Once you have this URL, use it inside an iframe on your external site. For example:
<iframe src="https://example.com/my-article?tmpl=component" width="100%" height="600" style="border:none;"></iframe>