Last active
November 23, 2017 19:06
-
-
Save abid112/0710240a56c2dae10dea6addf7bee98c to your computer and use it in GitHub Desktop.
If you don't want to see "Woocommerce Review" section on your product page, then add this line on your functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_filter( 'woocommerce_product_tabs', 'wcs_woo_remove_reviews_tab', 98 ); | |
function wcs_woo_remove_reviews_tab($tabs) { | |
unset($tabs['reviews']); | |
return $tabs; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you