Skip to content

Instantly share code, notes, and snippets.

@richtabor
Forked from deeman/function.php
Last active January 4, 2019 17:01
Show Gist options
  • Save richtabor/dd90aa64ae6fe2164ce750b41c15972d to your computer and use it in GitHub Desktop.
Save richtabor/dd90aa64ae6fe2164ce750b41c15972d to your computer and use it in GitHub Desktop.
WooCommerce. Single product. Remove Additional Information
/**
* Modify 'More Information' tab.
*/
function ava_child_product_additional_information_heading() {
return __( 'More Stuff', 'ava' );
}
add_filter('woocommerce_product_additional_information_heading', 'ava_child_product_additional_information_heading');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment