- Details
- Written by: Alex Walker
- Category: Convert Forms by Tassos
- Hits: 37
https://www.tassos.gr/docs/convert-forms/security/ensure-a-unique-value-is-entered-into-a
ISSUE:
So you have a mailing list and you only want the person to be able to subscribe once.
To ensure a form field has a unique value, copy the code shown below and place it into the PHP Scripts -> Form Process area of your form.
// Enter the Field Name to search against
$unique_field_name = 'email';
// Enter the error message that will appear when the same value has already been submitted
$unique_field_error = 'A form with this value has already been submitted';
// Do not edit below
$unique_post_value = $post[$unique_field_name];
if (!$submissions = ConvertForms\Api::getFormSubmissions($form['id']))
{
return;
}
foreach ($submissions as $key => $submission)
{
if (!isset($submission->params->$unique_field_name))
{
continue;
}
$submission_unique_value = $submission->params->$unique_field_name;
if ($unique_post_value == $submission_unique_value)
{
throw new Exception($unique_field_error);
}
}
- Details
- Written by: Alex Walker
- Category: Convert Forms by Tassos
- Hits: 59
https://www.tassos.gr/docs/engagebox/conditions/datetime
- Details
- Written by: Alex Walker
- Category: Convert Forms by Tassos
- Hits: 96
With BreezingForms there used to be ContentBuilder which allowed submissions to be displayed in a table. Now that BF is no more, how can I do that in Convert Forms?
While Convert Forms doesn’t yet offer a direct integration with Google Sheets, there’s a reliable workaround:
You can connect Convert Forms to Google Sheets using our Zapier integration. Zapier acts as a bridge, allowing you to sync form submissions with Google Sheets automatically.
Here are some helpful links to get you started:
- How to connect Convert Forms with Zapier: https://www.tassos.gr/
joomla-extensions/convert- forms/docs/how-to-connect- convertforms-with-zapier - Google Sheets Zapier Page: https://zapier.com/apps/
convert-forms/integrations/ google-sheets - If you’re new to Zapier: https://www.tassos.gr/
blog/announcing-the- convertforms-zapier- integration
PS: If you’d rather not deal with the technical details, we offer a service where we create and configure the exact form you’re looking for using Convert Forms — including setup, styling, integrations, and testing. You can learn more here: https://www.tassos.gr/ services/custom-form
Regards,
Tassos
To display a Sheet in an article obtain the share link and then use OSEmbed or other plugin.
- Details
- Written by: Alex Walker
- Category: Convert Forms by Tassos
- Hits: 216
https://www.tassos.gr/blog/tutorials/google-search-console-joomla
- Details
- Written by: Alex Walker
- Category: Convert Forms by Tassos
- Hits: 255
https://www.tassos.gr/joomla-extensions/convert-forms/docs/how-to-add-hcaptcha-to-your-form
Joomwalker is not affiliated with or endorsed by the Joomla Project or Open Source Matters.