Visitors to your site can preview their comments with a click of a button.
Go to the Settings (called "Options" in WordPress 2.6 ) -> Ajax Comment Preview admin panel. From there you'll be able to specify the markup used to display the comment being previewed. The markup you enter will depend on what theme your site is using. If you're using Kubrick (the default theme for WordPress), the settings that come installed with the plugin will work fine. For other themes, I suggest the following.
%author%, %date%, %content%, ...).<ol>, <ul>, or <div>
tag. You'll probably need to put your preview markup inside that
"parent" tag too. Make sure it has the same class(es) as the tag in your
theme's code.Remember, you have to have WordPress version 2.6 or higher to use this plugin. If you do:
This plugin has two files: ajax-comment-preview.php and ajax-comment-preview.js .
Did you upload them both? (You did if you were a good blogger and followed the directions.)
Make sure both of those files are on your webserver and in the same directory.
Are you serving your blog's webpages as XML documents (for example with the MIME type
application/xhtml+xml
)? If so (or if you don't know what that means), try putting
xmlns="http://www.w3.org/1999/xhtml"
inside the very first HTML tag of your comment template. So if you had:
<li class="comment">
as the first line in your comment template, change it to
<li class="comment" xmlns="http://www.w3.org/1999/xhtml">
in the big text box.
... Can you tell if there are any JavaScript errors when you load a post on your blog or when you click the preview button?
Other than that, nope, I'm out of ideas.