The Woocommerce by default allows users to leave reviews in the product pages. You can disable them by two methods:
Edit A Product Property
If you edit the product, you will find the ‘Allow Comments’ in the product property ‘Advance’ Tab. You can simply untick that so disallow reviews for that particular product.
Disable All Product Reviews Globally
You can edit the theme functions.php template and add the following:
add_filter( 'woocommerce_product_tabs', 'helloacm_remove_product_review', 99);
function helloacm_remove_product_review($tabs) {
unset($tabs['reviews']);
return $tabs;
}
The value 99 (third parameter) is the priority.
–EOF (The Ultimate Computing & Technology Blog) —
Last Post: How to Remove Admin TopBar in WordPress?
Next Post: Some Issues Reported by FixInsight Static Delphi Code Analyser