Disable comments

I’m wondering if there’s any way to prevent users from leaving comments but still display the comments form? So, whenever a new comment is posted, it should be automatically trashed or it shouldn’t be added at all. The comment form I have is for presentational purposes only and it shouldn’t accept any comments but it … Read more

Customize the cancel_comment_reply_link

As the title suggests, I want to modify or customize the cancel_comment_reply_link without editing the /wp-includes/comment-template.php. The code in comment-template.php looks like this: <h3 id=”reply-title” class=”comment-reply-title”> <?php comment_form_title( $args[‘title_reply’], $args[‘title_reply_to’] ); ?> <small> <?php cancel_comment_reply_link( $args[‘cancel_reply_link’] ); ?> </small> </h3> Basically, I want to get the cancel_comment_reply_link out of the <h3> and <small>-Tags into a … Read more

How to Remove novalidate attribute from comment form

I’m using html5 support for input formats and custom comment form fields with this code: <?php $commenter = wp_get_current_commenter(); $args = wp_parse_args( $args ); if ( ! isset( $args[‘format’] ) ) $args[‘format’] = current_theme_supports( ‘html5’, ‘comment-form’ ) ? ‘html5’ : ‘xhtml’; $req = get_option( ‘require_name_email’ ); $aria_req = ( $req ? ” aria-required=’true'” : ” … Read more

Two steps comment form

Is it possible to have a comment form for anonymous users, that be proceeded in two steps. First step enter author info (Name and Email) then second step to add comment? I know this is possible with AJAX (with some limitation). Also some plugins like Jetpack, does something close to that, and Gravity have a … Read more

Threaded Comments Feature not working

If a reader posts a comment on my blog, I’m able to reply to it. But the reply is not appearing on the post page, even after approving the comment. Number of comments to that specific post is 3, i.e., 2 from Readers + 1 Mine(Reply). Here is the example: http://www.gadgetcage.com/most-expensive-computers-in-the-world/16264/comment-page-1/#comment-65580 . Note: I have … Read more

Edit Comment_Field while using T5 Comment Textarea On Top-Plugin

I’m using the T5 Comment Textarea On Top-Plugin for the comment_field. I’m a newbie to wordpress. So I don’t know, how can i edit the Style of the comment_field or edit the Label? Usually I would put in the array of comment_form in my comments.php like this: ‘comment_field’ => ‘<p class=”comment-form-comment”>…’, But this only adds … Read more