Comment section – checkbox with no text
-
Hi there,
Thanks for the great plugin. I’m having an issue with the comments section. A checkbox shows up, but there is no text. Even if I click the checkbox, there is an error:ERROR: Please accept the privacy checkbox.
I have disabled Jetpack Custom Comments. My theme and WP version are up to date.
My comments.php code is below. Thanks for any help!
Thanks,
Smiti<?php
//Required password to comment
if ( post_password_required() ) { ?>
<p><?php _e( ‘This post is password protected. Enter the password to view comments.’, THEMEDOMAIN ); ?></p>
<?php
return;
}
?>
<h2 class=”widgettitle”><span class=”content_title”><?php comments_number(__( ‘Comments’, THEMEDOMAIN ), __( ‘Comment’, THEMEDOMAIN ), ‘% ‘.__( ‘Comments’, THEMEDOMAIN )); ?></span></h2><br class=”clear”/>
<?php
//Display Comments
if( have_comments() ) : ?><div>
<?php wp_list_comments( array(‘callback’ => ‘letsblog_comment’, ‘avatar_size’ => ’40’) ); ?>
</div><!– End of thread –>
<div style=”height:10px”></div><?php endif; ?>
<?php if ( get_comment_pages_count() > 1 && get_option( ‘page_comments’ ) ) : // Are there comments to navigate through? ?>
<div class=”pagination”><p><?php previous_comments_link(‘<‘); ?> <?php next_comments_link(‘>’); ?></p></div><br class=”clear”/><div class=”line”></div><br/><br/>
<?php endif; // check for comment navigation ?>
<?php
//Display Comment Form
if (‘open’ == $post->comment_status) : ?><div id=”respond”>
<?php comment_form(); ?>
</div><?php endif; ?>
The page I need help with: [log in to see the link]
- The topic ‘Comment section – checkbox with no text’ is closed to new replies.