Hello.
Right now this feature is not supported in the plugin but here is the workaround for this.
FTP to your site > wp-content/plugins/twb-woocommerce-reviews folder, open the file “twb-output.php” inside it.
Look for:
$twb_wc_reviews = get_comments(
array(
'status' => 'approve',
'post_status' => 'publish',
'post_type' => 'product',
'parent' => '0',
'post_id' => $product_id
)
);
and replace it with following:
$twb_wc_reviews = get_comments(
array(
'status' => 'approve',
'post_status' => 'publish',
'post_type' => 'product',
'parent' => '0',
'post_id' => $product_id,
'number' => '5'
)
);
Save the file and the comments number will be set to 5.
Let me know if any issue.
thanks