- 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
Auto-Populate a Form Field with an Article Data
You may need to populate your form fields with data from the article where the form appears. This means you can set value to your form fields from both the article data as well as the article's custom fields data. Below you can find a PHP snippet for each version.
- Populate a form field with the article's title
- Populate a form field with the article's author email
- Populate a form field with an article's custom field value
Setup
Populate a form field with the article's title
Using Smart Tags
Convert Forms provides an {article.KEY} Smart tag that helps you easily grab information from the current article the form resides in.
To grab the article title and store it in a form field, simply go into your Form > Field > Default Value and set it to: {article.title}
Using PHP
To populate a form field with the article's title, copy the code shown below and place it into the PHP Scripts -> Form Prepare area of your form.
// Enter the name of the field to save the value
$fieldName = 'title';
// Optionally set the article's ID. Don't touch it to load current article.
$articleID = $app->input->get('id');
// Do not edit below
// Ensure article exists
$query = $db->getQuery(true);
$query->select('*')->from('#__content')->where('id=' . $db->q($articleID));
$db->setQuery($query);
if ($db->loadObject())
{
$model = JModelLegacy::getInstance('Article', 'ContentModel');
$model->setState('params', JFactory::getApplication()->getParams());
$article = $model->getItem($articleID);
$form['fields'][$fieldName]['value'] = $article->title;
}
Populate a form field with the article's author email
Using Smart Tags
Convert Forms provides an {article.KEY} Smart tag that helps you easily grab information from the current article the form resides in.
To grab the article title and store it in a form field, simply go into your Form > Field > Default Value and set it to: {article.user.email}
Using PHP
To populate a form field with the article's author email, copy the code shown below and place it into the PHP Scripts -> Form Prepare area of your form.
// Enter the name of the field to save the value
$fieldName = 'title';
// Optionally set the article's ID. Don't touch it to load current article.
$articleID = $app->input->get('id');
// Do not edit below
// Ensure article exists
$query = $db->getQuery(true);
$query->select('*')->from('#__content')->where('id=' . $db->q($articleID));
$db->setQuery($query);
if ($db->loadObject())
{
$model = JModelLegacy::getInstance('Article', 'ContentModel');
$model->setState('params', JFactory::getApplication()->getParams());
$article = $model->getItem($articleID);
// Load author's user data
$author = JFactory::getUser($article->created_by);
$form['fields'][$fieldName]['value'] = $author->email;
}
Populate a form field with an article's custom field value
Using Smart Tags
Convert Forms provides an {article.KEY} Smart tag that helps you easily grab information from the current article the form resides in.
To grab the article title and store it in a form field, simply go into your Form > Field > Default Value and set it to: {article.field.NAME} where NAME is the Custom Field > Name.
Using PHP
To populate a form field with a custom field value of an article, copy the code shown below and place it into the PHP Scripts -> Form Prepare area of your form.
// Enter the Custom Field Name (not Label) to find its value
$customFieldName = 'name';
// Enter the Hidden Field Name here to save the value
$hiddenFieldName = 'myHiddenFieldName';
// Optionally set the article's ID. Don't touch it to load current article.
$articleID = $app->input->get('id');
// Do not edit below
// Ensure article exists
$query = $db->getQuery(true);
$query->select('*')->from('#__content')->where('id=' . $db->q($articleID));
$db->setQuery($query);
if ($db->loadObject())
{
$model = JModelLegacy::getInstance('Article', 'ContentModel');
$model->setState('params', JFactory::getApplication()->getParams());
$article = $model->getItem($articleID);
if (defined('nrJ4'))
{
$jcfields = Joomla\Component\Fields\Administrator\Helper\FieldsHelper::getFields('com_content.article', $article, true);
}
else
{
$jcfields = FieldsHelper::getFields('com_content.article', $article, true);
}
foreach($jcfields as $jcfield)
{
if ($jcfield->name != $customFieldName)
{
continue;
}
$form['fields'][$hiddenFieldName]['value'] = $jcfield->rawvalue;
break;
}
}