Skip to content

Instantly share code, notes, and snippets.

@aderaaij
Created July 17, 2014 10:22
Show Gist options
  • Save aderaaij/a0da8365b7deac119f5d to your computer and use it in GitHub Desktop.
Save aderaaij/a0da8365b7deac119f5d to your computer and use it in GitHub Desktop.
Remove tabs
<?php
function woo_remove_tab($tabs) {
unset($tabs['reviews']);
unset($tabs['description']);
return $tabs;
}
add_filter( 'woocommerce_product_tabs', 'woo_remove_tab', 98);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment