How to Remove/disable Review option from Woocommerce Product Pages

There are Two Ways to Remove/disable the Review Option From the Woocommerce Product Pages.

1- Use a WordPress Plugin Called : Disable Comments

2- Add a Code in the function.php file.

Lets Start with the first Option.

Below is the Screenshot, It  Looks Like.

Download this plugin: Disable Comment And Activate the Plugin.

After Activating the Plugin, you will have Following Options. Check the Products under “On certain post types:” And click Save.

Now Go to your Product Pages and You will see that Review Option have been Removed.

 

Option 2 : Go to functions.php and Add the following code. (Go to Admin panel > Appearance > Editor > functions.php)

add_filter( ‘woocommerce_product_tabs’, ‘sb_woo_remove_reviews_tab’, 98);

function sb_woo_remove_reviews_tab($tabs) { unset($tabs[‘reviews’]);

return $tabs;}

Click Update File And You will see review option have been Removed.

Waqas

I hope you enjoy reading this blog post. If you want my team to do WooCommerce Maintenance for you, click here.

Leave a Comment

Your email address will not be published. Required fields are marked *