DEV Community

Tahmid Khan
Tahmid Khan

Posted on

I built a WordPress plugin for Typeform-style forms

Most WordPress form builders feel bloated. You install 15 addons, fight through weird UIs, and still end up with forms that look like they were made in 2014.

So I built something different: Forms.md for WordPress

It lets you build conversational, multi-step forms inside WordPress using a simple Markdown-style syntax. Of course, it also supports classic forms if you don't want slides.

Anyway, instead of dragging blocks around, you write forms like this:

name* = TextInput(
  | question = What's your name?
)

email = EmailInput(
  | question = What's your email?
)
Enter fullscreen mode Exit fullscreen mode

There's also a really nice AI form builder to help you write your forms:

Some cool features:

  • Typeform-style UX or classic forms (your choice)
  • Conditional logic
  • AI-powered form generation
  • File uploads, ratings, NPS, etc. (all the field types you can think of)
  • Fully accessible
  • Dark mode support
  • Unlimited forms and submissions

The plugin is lightweight, developer-friendly, and doesn't lock you into some horrible proprietary builder. The underlying core is open-source with > 5k registered users: forms.md

You can try it here: wp.forms.md

Would love feedback from other devs and WordPress folks.

Top comments (0)