How to Show a Webflow Form Field Only when a Checkbox is Checked

Ovidiu
February 2, 2024
Try Memberstack for Free!

TABLE OF CONTENTS

Add memberships to your Webflow project in minutes.

Try Memberstack

Over 200 free cloneable Webflow components. No sign up needed.

View Library

Add memberships to your React project in minutes.

Try Memberstack

This post will teach you how to show a webflow form field only when a checkbox is checked and when/why you might want to show a form field only when a checkbox is checked in your project.

How to Show a Webflow Form Field Only when a Checkbox is Checked

Memberscripts needed:

  1. https://www.memberstack.com/scripts/checkbox-form-field-logic

Tutorial:

Cloneable:

https://webflow.com/made-in-webflow/website/ios-toggle-form

Why/When would you need to show a Webflow Form Field only when a checkbox is checked?

  1. Improve the user experience by disabling irrelevant form fields unless a checkbox is checked.

Sometimes when asking users to fill out a form, you may need to apply some conditional logic.

For example, if you’re using checkboxes, some fields may become irrelevant unless the checkboxes are checked, so users shouldn’t need to fill out those fields anymore. As such, you’ll want to disable those fields.

That’s exactly what we’re going to do with MemberScript #54 below.

Showing a form field only when a checkbox is checked in Webflow forms

To show form fields only when a checkbox is checked in a Webflow form, we’re going to use MemberScript #54 – Checkbox Form Field Logic. Follow the link to get the code you’ll need to add to your page and watch a video tutorial on how to set everything up.

Setting it up

The first thing you’ll need to do is build out the form itself and style it however you want.

Once you’ve added all the fields, select the checkbox and add the following attribute to it:

  • ms-code-field-logic-trigger=”email-preferences”

The value can be anything you want.

Then select the fields you want that checkbox to disable and add the following attribute to it:

  • ms-code-field-logic-target=”email-preferences”

Keep in mind that the value needs to match the value of the checkbox’s attribute.

For example, if you’ve got multiple checkboxes, each enabling or disabling their own set of fields, you need to match the values of the attributes of the disabled fields with their corresponding checkbox.

Making it work

Now that you’ve got the form set up and you’ve created the show/hide buttons, all you need to do is add the MemberScript #54 custom code to your page, before the closing body tag.

You’ll notice at the beginning of the custom code there’s a CSS class called “disabled.” That class defines the inactive fields, so you can go ahead and style them however you like.

Conclusion

That’s everything, you can now go ahead and test your form.

If you want to use our demo project to get you started, just click the button below to add it to your Webflow site.

Our demo can help you add a form with checkboxes that enable or disable certain fields within it.

Take me to the Script!