WordPress Comment Box on woocommerce product page [closed]

Replies aren’t disabled for reviews in woocommerce, but there is no output of a reply button. If you add one to the review.php template via comment_reply_link() – exemplary usage below – replies are possible.

Code:

$args = array(
    'reply_text' => 'Reply <span>&darr;</span>',
    'depth'      => '1',
    'max_depth'  => '5'
);
comment_reply_link( $args );