Skip to content

Instantly share code, notes, and snippets.

@ofernandolopes
Forked from bryceadams/gist:f9b9f2c0ea41272754a4
Last active December 13, 2015 04:49
Show Gist options
  • Select an option

  • Save ofernandolopes/45c5a5e128f5ff91b68b to your computer and use it in GitHub Desktop.

Select an option

Save ofernandolopes/45c5a5e128f5ff91b68b to your computer and use it in GitHub Desktop.
WooCommerce - Disabling the Reviews Tab
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