Link to home
Start Free TrialLog in
Avatar of Richard Korts
Richard KortsFlag for United States of America

asked on

Needed - WordPress Form Plugin

I need a WordPress form plugin that meets these requirements (at a minimum).

1. Form fields can be styled as to font color, size and face & decoration. I'm talking the field the submitter enters data into, not the captions. Hopefully, captions can be styled too.
2. Calendar form fields with calendar "picker".
3. Custom editing available. For example, customers served ONLY in Ohio, zip code must be in Ohio; email address reasonableness test (must contain @ sign & .).
4. Ability to accept only numeric input into field.
5. Normal <select> type pulldowns.
6. Free or low cost.

Suggestions?
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

You are not going to find a form plugin that does all 6 things. Of the most concern is #3 as that will involve a fair amount of custom coding on your end and a knowledge of WordPress hooks and filters.  

For the other problem (#1) form plugins generally don't let you muck with things field by field but a few do.

So, keeping all six items in mind, your best bet would be Formidable Pro (https://formidablepro.com) as it does let you control the HTML and CSS to a high level of specificity.  There is a free and very limited version of the plugin in the WordPress plugin repository (listed as Formidable forms) so you can try before you buy.

The next one to look at would be Ninja Forms (https://ninjaforms.com).  The base plugin is free but to do anything fun with it you pay per add-on.  Still and all, it might be enough for your listed needs.  The one thing I don't know is how easy or hard it is to style field by field, but I assume at the worst it has classes that you can modify via CSS.

Going back to #3, no plugin that I am aware if does this kind of validation automatically. If you really want to check zip codes against city/state for accuracy you will be working with whichever plugin you choose to write your own custom validation routine in PHP.  So while it is probably too expensive for you given #6 I would also have you look at Gravity Forms as it has the most developer-friendly API of the bunch.  Formidable Pro also has pretty good developer hooks but the documentation isn't as good.  Their support, however, is fantastic but costs a bit more than the Pro plugin to access.
Avatar of Richard Korts

ASKER

Jason,

Thanks, I found Ninja forms & downloaded the plugin; in fact I'm trying to work with it now but I can't add fields to the basic form they provided. It appeared I could drag from the element types on the left & drop on the form. Worked once, but not thereafter.

Any ideas?
If this is the same theme as before, I would worry about JQuery issues...
It's the same theme.

So I'm screwed?

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Jason C. Levine
Jason C. Levine
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Jason,

Since Formidable Pro also extols Drag & Drop, the only way I know that can be done in the browser environment is using Jquery; in fact, I recently did one in a custom site I am building so I know the concepts.

Does that mean it will have a problem with this Theme too?

I guess I just have to try.

Happy Holidays!
Probably.  Until you pinpoint and fix and JavaScript problems, anything that needs javascript is potentially going to have problems.