• When I was looking around GitHub (https://github.com/openlab-at-city-tech/wp-grade-comments), I noticed a change of wp-grade-comments.php, which is about “Comment authors should see private replies” updated 7 months ago (Last updated here is 1 year ago.)

    I compare the code here. Indeed missing the code:

    // Comment authors should see private replies.

    if ( ! empty( $private_comment->comment_parent ) ) {
    $parent_id = (int) $private_comment->comment_parent;
    $parent_comment = get_comment( $parent_id );

    if ( $user_id == $parent_comment->user_id ) {
    continue;
    }
    }`

  • The topic ‘Newer version on GitHub’ is closed to new replies.