How can I remove the main description text box in a Woocommerce product editor page? I only use the “Product short description” text box [closed]

I haven’t tested but something like this should work:

function wpse70000_add_author_metabox_to_cpt_book( $args, $post_type ) {
    if ('product' === $post_type ){
        unset($args['editor'] ); // set the 'supports' array
    }    
return $args;
}

add_filter( 'register_post_type_args', 'wpse70000_add_author_metabox_to_cpt_book', 10, 2 );