Skip to content

Instantly share code, notes, and snippets.

@mzdebo
Created January 24, 2021 12:13
Show Gist options
  • Save mzdebo/64d24c9e26a3f7418f65595ff7537fa5 to your computer and use it in GitHub Desktop.
Save mzdebo/64d24c9e26a3f7418f65595ff7537fa5 to your computer and use it in GitHub Desktop.
/***********
* Hide sku
************/
function sv_remove_product_page_skus( $enabled ) {
if ( ! is_admin() && is_product() ) {
return false;
}
return $enabled;
}
add_filter( 'wc_product_sku_enabled', 'sv_remove_product_page_skus' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment