• Resolved mypathintheworld

    (@mypathintheworld)


    The GDPR consent checkbox does not work (you cannot mark it as checked). Even when I tried to put a regular checkbox with a message it does not work. It makes it impossible for people to send the form.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Ethan Choi

    (@ethanchoi)

    Hi mypathintheworld,

    It looks like the WordPress theme of the site is changing the browser’s default appearance for checkbox/radio button inputs and that’s conflicting with WPForms styles.

    To fix this we need some custom CSS:

    .wpforms-container input[type=checkbox] {
    	-webkit-appearance: checkbox !important;
    	-moz-appearance: checkbox !important;
    	appearance: checkbox !important;
    }
    

    In case it helps, here’s a tutorial from WPBeginner on easy ways to add custom CSS like this to your site.

    I hope this helps 🙂

    Thread Starter mypathintheworld

    (@mypathintheworld)

    Yes, it’s working now.
    Thank you!

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Checkboxes do not work’ is closed to new replies.