Home Forums Space themes support forum remove the SKU and Category field on the single product page

remove the SKU and Category field on the single product page

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #667954

    craig-7256
    Participant

    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.
    #667973

    Luke Nielsen
    Keymaster

    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

Viewing 2 posts - 1 through 2 (of 2 total)