Does WordPress Allow Blank/Empty Comment Submissions In WordPress?

I’ve got a great Comment Form and Threaded Comments setup by using the native WordPress functions: comment_form and wp_list_comments. However, I’m trying to also create a custom Contest Comment template for certain posts. I call comments_template(‘/contest-comments.php’, true); conditionally based on whether a certain custom field exists or not. It works great. I’m trying to make … Read more

Comments Reply Form

When I click on Reply, the reply form appears at the bottom of the page (under the last comment). How can I add the Reply Form inside the comment to which I am going to add the reply? 2 Answers 2 Ensure that you have Threaded Comments enabled: go to Dashboard -> Settings -> Discussion … Read more

Why are default comments deprecated?

I am developing a theme and, after calling comments_template(), noticed that “Theme without comments.php is deprecated since version 3.0”. I created a comments.php in the root of my theme and copied the default wp-includes/theme-compat/comments.php inside, which is perfectly fine for me. This core file will be removed in future versions of wordpress. I am not … Read more

Using filter to add additional fields to comment_form()

I want to add a field to the comments and have used these codes. functions.php function my_fields($fields) { $fields[‘url2’] = ‘<p class=”comment-form-url2″> <label for=”url2″>URL hittad på webben</label> <input id=”url2″ name=”url2″ type=”text” value=”” size=”30″ /> </p>’; return $fields; } add_filter(‘comment_form_default_fields’,’my_fields’); comments.php comment_form(); Questions It does not add an extra field in admin comment. Should it, or … Read more

How to allow the reply link to remain on the comment form after I have reached my 10 nested comment limit?

Is there a way to allow the reply link to remain on the comment form after I have reached my 10 nested comment limit? I don’t necessarily need nested comments I just need the reply link to be always available as I’m using a plugin that only sends out email notifications on a comment “reply”. … Read more

Why does comment_reply_link launch the reply form at the wrong spot on the comment section?

I have this custom extended Walker_Comments class: class Custom_Comment_Walker extends Walker_Comment { var $tree_type=”comment”; var $db_fields = array( ‘parent’ => ‘comment_parent’, ‘id’ => ‘comment_ID’ ); function __construct() { ?> <ul class=”comments-list col-md-12″> <?php } function start_lvl( &$output, $depth = 0, $args = array() ) { $GLOBALS[‘comment_depth’] = $depth + 1; ?> <ul class=”child-comments comments-list col-md-12″> … Read more

How do I set up real anonymous posting in bbpress forums? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for WordPress Development Stack Exchange. Closed 7 years ago. Improve this question I have bbpress-post-topics plugin installed so that my comments forms are replaced by a bbpress forum topic, it’s working but I … Read more