Created
October 24, 2017 16:55
-
-
Save deeman/5bdccefb07cd602909494d8d6a9a8d22 to your computer and use it in GitHub Desktop.
WooCommerce. Single product. Remove Additional Information
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* 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