Use this code snippet to disable copy and paste between Formidable Forms’ email and email confirmation fields. [Read More…]
Strip Non-numeric Characters from Phone Number with jQuery
When displaying a view, do you need to display phone numbers as links? If so, this code snippet that we use with the Developers Directory, strips all non numeric characters from a phone number. View the code on Gist. To use this snippet, replace the jQuery selector(s) with your field id(s).
Use Toggle to Copy Fields in Form Sections
This is the code used to implement a toggle as a trigger to copy fields between form sections in the Formidable Masterminds Developers Directory. Toggle fields are single option checkbox fields in disguise. View the code on Gist.
Strip Non-numeric Characters from Phone Numbers
Whenever you capture a phone number on a form, wouldn’t be nice to also capture a version of the number that can be used in a tel: link on a view? Here’s a jQuery snippet that will do just that and store the value stripped of non-numeric characters in a hidden field with the exception [Read More…]
Taming E2PDF Saves
This Mastermind tip is contributed by Rob Levine (@RobL) from the Formidable Slack Community. Thank you Rob! Problem I am using e2PDF to create a PDF of a submitted Formidable Form. The difference for me is that I both want to save it to the server and do it without the user knowing (or caring) [Read More…]
Disable Formidable’s Inbox
To disable the display of inbox messages, use this code snippet to keep the inbox empty: View the code on Gist. To completely remove the inbox from the Formidable menu, use this snippet: View the code on Gist.
Count Entries Shortcode
Introduction When we built this site, we envisioned the code snippet area to be a reference resource for experienced Formidable developers. However, as this site grows, we are making adjustments for a broader audience. Keep asking your questions. We appreciate it! If you need help with a code snippet that you found on this site, [Read More…]
Populate Dropdown from SQL Query
Simple code snippet to populate a Formidable form dropdown with filtered entries from SQL query. Uses complex LEFT JOINs. View the code on Gist.