5 ways to Disable WooCommerce Reviews Tab In WordPress
Are you planning to Disable WooCommerce Reviews Tab completely from your WordPress website? That review tab on your products page is nothing but a comment or feedback option from your customers. Feedback helps you to make your website service better. So disabling that option is not a good option.
You can disable it for one product page or on a complete eCommerce website
There are mostly 5 ways to disable product reviews Tab
Table Of Content
- By unchecking the option ” Enable product reviews ” from the Product setting Option
- Without Using Any Plugin method means by using code inside function.php.
- Disable the product reviews tab only for some products manually
- By using the Plugin Disable WooCommerce Reviews by By pipdig
- You can hide the reviews tab by using CSS >> You need to paste the code inside theme custom CSS
1. By unchecking the option ” Enable product reviews ” from the Product setting Option
By doing such all your product reviews tab will get disabled all over the web store.
Or
2. Without Using any Plugin method means by using code inside function.php.
add_filter( 'woocommerce_product_tabs', 'wcs_woo_remove_reviews_tab', 98 );
function wcs_woo_remove_reviews_tab($tabs) {
unset($tabs['reviews']);
return $tabs;
}
This method will also hide all reviews tab throughout your eCommerce website
Or
3. Disable the product reviews tab only for some products manually
Once you are inside your wp-admin. You need to click on “All Products ” >>> Then inside advance tab >>> Uncheck enable reviews. This will disable the product reviews tab for single products.
Or
4. By using the Plugin Disable WooCommerce Reviews by By
This Plugin has all the functions which is required for you to Disable WooCommerce Reviews Tab
Or
5. You can hide the reviews tab by using CSS >> You need to paste the code inside theme custom CSS
.woocommerce_tabs .tabs {
display: none;
}
Hi there would you mind letting me know which hosting company you’re utilizing? I’ve loaded your blog in 3 completely different web browsers and I must say this blog loads a lot faster then most. Can you suggest a good internet hosting provider at a reasonable price? Thanks, I appreciate it!|
Hello Mayra Sirpilla ,
You can try https://www.gomahamaya.com/go/kinsta-hosting . they are one of the best hosting company if you are looking for chepaer than you should use https://www.gomahamaya.com/go/fastcomet
Regards,
Rahul
Thank you
Thanks a lot Rahul. I was looking for a way to remove at least one tab in Storefront’s product page. Thank you very much for your solution.