Created
April 18, 2017 13:28
-
-
Save bogdanpopa90/b0a969240fb34abe87f4d6012d921e31 to your computer and use it in GitHub Desktop.
Remove SKU only on WooCommerce product pages
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
function THEMENAME_remove_product_page_sku( $enabled ) { | |
if ( ! is_admin() && is_product() ) { | |
return false; | |
} | |
return $enabled; | |
} | |
add_filter( 'wc_product_sku_enabled', 'THEMENAME_remove_product_page_sku' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment