Option 1 – Using PHP:
Add the following code to your child theme’s functions.php:
add_filter('wc_product_sku_enabled', '__return_false' );Option 2 – Using CSS:
Add the following CSS snippet into Theme Options > Layout > Custom CSS
.sku_wrapper {
display: none !important;
}To disable the social share buttons on product pages, go to:
Theme Options > Shop > Advanced > Disable Shop Social Share Buttons
To hide the full meta section under the product (SKU, tags, categories), add the following CSS snippet into Theme Options > Layout > Custom CSS
.product_meta {
display: none !important;
}To hide the tags while keeping the rest of the meta info, add the following CSS snippet into Theme Options > Layout > Custom CSS
.product_meta .tagged_as {
display: none !important;
}To remove categories from the meta area using PHP,
add the following to your child theme’s functions.php:
add_action( 'init', 'custom_remove_cats_action');
function custom_remove_cats_action() {
remove_action( 'woocommerce_single_product_summary', 'action_pixfort_product_cats', 6 );
}
To hide the “Description” title above the product description,
add the following to your child theme’s functions.php:
add_filter( 'woocommerce_product_description_heading', '__return_null' );
To remove all WooCommerce tabs (Description, Additional Info, Reviews), add the following to your child theme’s functions.php:
add_filter( 'woocommerce_product_tabs', 'my_remove_woo_tabs', 11 );
function my_remove_woo_tabs() {
return [];
}
To remove just selected tabs (e.g. Description, Additional Info, Reviews),
add the following to your child theme’s functions.php:
add_filter( 'woocommerce_product_tabs', 'my_remove_specific_woo_tabs', 11 );
function my_remove_specific_woo_tabs( $tabs ) {
unset( $tabs['description'] );
unset( $tabs['additional_information'] );
unset( $tabs['reviews'] );
return $tabs;
}
To remove only one tab (e.g. Reviews), remove the other lines from the code.
To hide the full meta section under the product (SKU, tags, categories), add the following CSS snippet into Theme Options > Layout > Custom CSS
.woocommerce .product .pix-item-badges {
display: none !important;
}
Product Category Badges



