remove the SKU and Category field on the single product page
-
Hi,
I would like to remove the SKU and Category field on the single product page. See my screen shot. I’ve had trouble finding a setting for these two?
Is there another way?
thanks
Attachments:
You must be
logged in to view attached files.
Hello,
Try to use the code below for help:
if ( ! function_exists( 'xts_remove_product_meta' ) ) {
/**
* Remove SKU and Categories from product meta.
*/
function xts_remove_product_meta() {
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_meta', 40 );
}
add_action( 'init', 'xts_remove_product_meta' );
}
Define it in the functions.php file in your child theme.
Kind Regards