Saw this thread, and I’m having the same problem, but with 2.2. I can’t seem to get any of the comment quicktag plugins to display. I’m using WP 2.2.2 and PHP 5.1.6 with my own theme. I’ve tried the Comment Quicktags +, Comments Quickags-Reloaded and the above LMB Box Quicktag plugins.
None will display the tags, but the LMB Box Quicktag plugin will however display a link for “quicktag” link, so know it’s trying to do its job. The link is flush left, so it was allowed to display, but not the buttons?
I’ve deactivated my two other comment-related plugins, Cryptograph and Filosofo, but that did not seem to change anything.
Here’s my code for the comment form (with the LMB function call inserted).
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
<?php if ( $user_ID ) : ?>
<p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="<?php _e('Log out of this account') ?>">Logout »</a></p>
<?php else : ?>
<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" />
<label for="author"><small>Name <?php if ($req) _e('(required)'); ?> or if already a member <?php wp_loginout(); ?></small></label></p>
<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" />
<label for="email"><small>Mail (will not be published) <?php if ($req) _e('(required)'); ?></small></label></p>
<!--<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
<label for="url"><small>Website</small></label></p>-->
<?php endif; ?>
<p><?php if (function_exists('lmbbox_comment_quicktags_display')) { lmbbox_comment_quicktags_display(); } ?>
<textarea name="comment" id="text" cols="63" rows="7" tabindex="4"></textarea></p>
<?php display_cryptographp(); ?>
<input name="submit" type="submit" tabindex="5" value="Submit" id="button"/>
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
<p><br /><p>
<?php do_action('comment_form', $post->ID); ?>
</form>
Thanks for any suggestions.