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.
Plugin info
Maintenance & Compatibility
Maintenance score
Possibly abandoned • Last updated 4231 days ago
Is WordPress Comments Form Validation abandoned?
Possibly abandoned (last update 4231 days ago).
Compatibility
Similar & Alternatives
Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.
Description
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’ );
`
Installation
- Click on the ‘Download Zip’ button located in the sidebar of this page.
- Login to your WordPress admin area and go to Plugins » Add New.
- Select ‘Upload’ and navigate to the file you downloaded (most likely in your ‘Downloads’ folder).