• Resolved smitins

    (@smitins)


    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]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter smitins

    (@smitins)

    Just an FYI, I disabled the plugin at the default consent from WordPress pops up for new commenters. I definitely prefer the wording of this plugin and I hope this issue will be resolved in the future.

    Hey @smitins,

    Currently I don’t think we can fix it for you, try asking your website/theme developer(s) first. I think they can fix this for you.

    Kind Regards,

    Merijn Molenaar

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Comment section – checkbox with no text’ is closed to new replies.