php - Add a field only on admin products from a custom type in WooCommerce

one text

Solution:

The main error comes from undefined $product variable. Try the following instead:

add_action( 'woocommerce_product_options_sku', 'add_product_final_sku_custom_field' );
function add_product_final_sku_custom_field(){
    global $post, $product_object;

    if ( ! is_a( $product_object, 'WC_Product' ) ) {
        $product_object = wc_get_product( $post->ID );
    }
        
    if ( $product_object->is_type('pw-gift-card') ) {    
        woocommerce_wp_text_input( array(
            'label' => __( 'Final SKU', 'woocommerce' ),
            'placeholder' => __( 'Enter final SKU here', 'woocommerce' ),
            'id' => 'final_sku',
            'desc_tip' => true,
            'description' => __( 'This SKU is for final use only.', 'woocommerce' ),
        ) );
    }
}

Code goes in functions.php file of the active child theme (or active theme).

Important Note: Specifying a product type as condition will not work when adding a new product, as the product type is not yet saved. This need to be done some CSS...

enter image description here

Source