Plugin info

Total downloads: 6,992
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 8/17/2009 (5979 days ago)
Added to WordPress: 8/10/2009 (16 years old)
Minimum WordPress version: 2.0
Tested up to WordPress version: 2.8.4
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 5979 days ago

20/100

Is WDP AJAX Comments abandoned?

Possibly abandoned (last update 5979 days ago).

Compatibility

Requires WordPress: 2.0
Tested up to: 2.8.4
Requires PHP: f

Developers

Languages

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

JS Archive List
Rating 4.8/5 (46 reviews)Active installs 3,000
JS Categories List Widget
Rating 4.8/5 (16 reviews)Active installs 1,000
Tumblr Ajax
Rating 3.0/5 (2 reviews)Active installs 10
Enable jQuery Migrate Helper
Rating 4.8/5 (109 reviews)Active installs 90,000
jQuery Updater
Rating 4.5/5 (64 reviews)Active installs 30,000
Use Google Libraries
Rating 4.4/5 (47 reviews)Active installs 10,000

Description

This plugin will integrate AJAX commenting feature into your WordPress Blog. It uses the powerful JavaScript Framework jQuery to handle AJAX requests and jQuery Validation plugin by bassitance.de to validate comment form on the client side.

Feature Summary

  • Enable AJAX Commenting
  • Client Side Form Validation
  • Easily rolls back if JS disabled
  • Easily configure custom styles for messages

See plugin page for more details

Installation

  1. Extract the plugin into wp-content/plugins directory of your WordPress blog
  2. Activate the plugin
  3. If you wish to enable client side validation, refer to FAQ.

Visit Plugin Page for more details

Frequently Asked Questions

How do i enable client side JavaScript validation?

Since this plugin uses jQuery Validation plugin, you need to add some CSS classes to your comment form in your WordPress Theme. Open comments.php file of your theme file and find out the comment form in it.
Now add following CSS classes to various input boxes:

  1. To the Author textbox, add attribute class=”required”
    e.g. if your Author textbox looks like
    <input type="text" name="author" id="author" value="” size=”35″ tabindex=”1″ />
    then make it
    <input type="text" name="author" id="author" value="” class=”required” size=”35″ tabindex=”1″ />
    or if you already have some class associated, like class=”foo” in it, then make it class=”foo required”
  2. Similarly, To the Email textbox, add attribute class=”email required”
  3. To the URL textbox, add attribute class=”url”
  4. To the comment textarea, add class=”required”
  5. If you need to change styles for error messages, refer to Q 2 below.
  6. That’s it, you are done adding JS validation to your comment form.

How do i change CSS styles of the notifications?

To change styles, you need to create a file named wdp-ajax-styles.css within your theme directory and define styled for .wdpajax-error, .wdpajax-success, label.error classes.

.wdpajax-error is used to display message when there is some problem submitting the comment
.wdpajax-success is used to display success message on successfull comment posting
label.error is used for error message that pop up as a result of invalid form data

For more details, visit plugin page

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

Version 1.0.8

Improved error notification