Skip to content

Instantly share code, notes, and snippets.

View abid112's full-sized avatar
🎯
Focusing

Abid Hasan abid112

🎯
Focusing
View GitHub Profile
@abid112
abid112 / remove-review-functions.php
Last active November 23, 2017 19:06
If you don't want to see "Woocommerce Review" section on your product page, then add this line on your functions.php
add_filter( 'woocommerce_product_tabs', 'wcs_woo_remove_reviews_tab', 98 );
function wcs_woo_remove_reviews_tab($tabs) {
unset($tabs['reviews']);
return $tabs;
}