This hook allows you to either enable or disable the reply button of the WooCommerce reviews.
Changelog
Added in version 7.0.6
Parameters
1. $enable (type: bool) – either enable or disable the reply button of the WooCommerce reviews
2. $postId (type: int) – the post ID where the reply button should be enabled or disabled
Usage
add_filter("wpdiscuz_product_review_replies", function ($enable, $postId) { return false; }, 10, 2);