Skip to content

Instantly share code, notes, and snippets.

@deeman
Created October 24, 2017 16:55
Show Gist options
  • Save deeman/5bdccefb07cd602909494d8d6a9a8d22 to your computer and use it in GitHub Desktop.
Save deeman/5bdccefb07cd602909494d8d6a9a8d22 to your computer and use it in GitHub Desktop.
WooCommerce. Single product. Remove Additional Information
/**
* remove on single product panel 'Additional Information' since it already says it on tab.
*/
add_filter('woocommerce_product_additional_information_heading', 'isa_product_additional_information_heading');
function isa_product_additional_information_heading() {
echo '';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment