- 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
- Integrate Drip Ecommerce CRM with Convert Forms
- Google Analytics
- Constant Contact
- SalesForce Web-to-Lead
- IContact
- Zoho CRM
- Elastic Email
- Zoho Campaigns
- Zapier
- Kit
- Brevo (Sendinblue)
- Campaign Monitor
- AWeber
- ActiveCampaign
-
Functionality
- 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
- 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
Disabling Browser Autocomplete for Form Fields
Would you like to stop browsers from automatically filling in your form fields in Convert Forms? While autocomplete can be useful, there are situations where you may want users to input their details manually.
This guide explains disabling autocomplete for specific fields or entire forms using built-in options and PHP snippets.
Before disabling autocomplete, keep in mind:
- Browsers often prioritize user settings over HTML attributes and JavaScript.
- The autocomplete="off" attribute indicates your preference, though browsers may not always follow it.
- Support for this feature varies across different browsers (refer to the MDN compatibility chart).
Disable Autocomplete for Specific Fields
Each form field has an option called "Disable Browser Autocomplete" in the field settings. Simply enable this option, and the browser will not auto-fill the field.
- Edit your form.
- Select the field where you want to disable autocomplete.
- In the field settings at the left, look for the Disable Browser Autocomplete option.
- Enable it and save the form.
Disable Autocomplete for All Fields in a Form
If you want to disable autocomplete for the entire form, apply a PHP snippet in the PHP Scripts → Form Display option.
- Edit your form.
- Navigate to Behavior -> PHP Scripts → Form Display.
- Insert the following PHP snippet:
$needle = '<form name="cf'.$form['id'].'"';
$replacement = $needle . ' autocomplete="off"';
$formLayout = str_replace($needle, $replacement, $formLayout);
This ensures that all fields within the form are marked with autocomplete="off", preventing browsers from auto-filling user data.
Notes
- Depending on user preferences and stored autofill data, some browsers may still override this setting.
- If autocomplete persists, consider adding autocomplete="new-password" to sensitive fields.