WordPress Comments Form Validation

WordPress Comments Form Validation is an open source plugin to add the jQuery Validation plugin functionality to the WordPress comments form.

Author:Andrew Saint (profile at wordpress.org)
WordPress version required:
WordPress version tested:
Plugin version:1.0.0
Added to WordPress repository:24-07-2014
Last updated:24-07-2014
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:https://github.com/andy-saint/wp-cf-validatio...
Total downloads:778
Active installs:10+
plugin download
Click to start download

Issues

This plugin was designed to work with the default comment form markup, it should work with most themes if they have stuck to the same naming conventions for field names.

Tips

Remove Default Styling

If you would like to use your own styling for the error elements then you can easily remove the default styling by placing the following code inside a ‘wp_enqueue_scripts’ callback function.

`php

function themeslug_dequeue_style() {
wp_dequeue_style( ‘wp-cf-validation’ );
}
add_action( ‘wp_enqueue_scripts’, ‘themeslug_dequeue_style’ );
`