Title: Disabling Front-End Form Validation
Last modified: February 17, 2020

---

# Disabling Front-End Form Validation

 *  Resolved [Fatih Turan](https://wordpress.org/support/users/fatihturan/)
 * (@fatihturan)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/disabling-front-end-form-validation/)
 * Hi,
 * How do I completely disable the JavaScript validation on the front-end side? 
   I’m using ParsleyJS on site-wide and I don’t want to use another validation.
 * Thanks.

Viewing 1 replies (of 1 total)

 *  Plugin Author [Danny van Kooten](https://wordpress.org/support/users/dvankooten/)
 * (@dvankooten)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/disabling-front-end-form-validation/#post-12449331)
 * Hello [@fatihturan](https://wordpress.org/support/users/fatihturan/),
 * The plugin only uses the default HTML5 form validation that ships in your browser,
   which you can disable using the following code snippet:
 *     ```
       add_filter( 'mc4wp_form_element_attributes', function( $attributes ) {
       	$attributes['novalidate'] = 'novalidate';
       	return $attributes;
       });
       ```
   

Viewing 1 replies (of 1 total)

The topic ‘Disabling Front-End Form Validation’ is closed to new replies.

 * ![](https://ps.w.org/mailchimp-for-wp/assets/icon-256x256.png?rev=1224577)
 * [MC4WP: Mailchimp for WordPress](https://wordpress.org/plugins/mailchimp-for-wp/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/mailchimp-for-wp/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/mailchimp-for-wp/)
 * [Active Topics](https://wordpress.org/support/plugin/mailchimp-for-wp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/mailchimp-for-wp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/mailchimp-for-wp/reviews/)

## Tags

 * [form](https://wordpress.org/support/topic-tag/form/)
 * [javascript](https://wordpress.org/support/topic-tag/javascript/)
 * [parsley](https://wordpress.org/support/topic-tag/parsley/)
 * [validation](https://wordpress.org/support/topic-tag/validation/)

 * 1 reply
 * 2 participants
 * Last reply from: [Danny van Kooten](https://wordpress.org/support/users/dvankooten/)
 * Last activity: [6 years, 3 months ago](https://wordpress.org/support/topic/disabling-front-end-form-validation/#post-12449331)
 * Status: resolved