Home › Forums › Basel support forum › How to hide SKU without CSS How to hide SKU without CSS This topic has 1 reply, 2 voices, and was last updated 7 years, 5 months ago by Artem Temos. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts May 15, 2017 at 5:46 am #13781 ThangamuthuParticipant Hi Team, How can I disable SKU shows in front end, There is any other option for disable SKU? May 15, 2017 at 6:18 am #13785 Artem TemosKeymaster Hi, Try to add the following code snippet to the functions.php file in the child theme to hide it function basel_remove_product_page_skus( $enabled ) { if ( ! is_admin() && is_product() ) { return false; } return $enabled; } add_filter( 'wc_product_sku_enabled', 'basel_remove_product_page_skus' ); Regards Author Posts Tagged: sku Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to create new topics. Login / Register