Skip to content

Instantly share code, notes, and snippets.

@sharkyak
Created August 26, 2016 06:16
Show Gist options
  • Select an option

  • Save sharkyak/3cbfc6917bc8c5188e201cdd6604f214 to your computer and use it in GitHub Desktop.

Select an option

Save sharkyak/3cbfc6917bc8c5188e201cdd6604f214 to your computer and use it in GitHub Desktop.
woocommerce remove reviews tab
remove_action('woocommerce_after_single_product_summary', 'woocommerce_output_related_products', 20);
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