How to Add a custom field on the gift card product edit page?
You can use the following code in functions.php for adding custom fields on the product edit page.
add_action('wps_wgm_giftcard_product_type_field', 'wps_wgm_create_custom_field');
function wps_wgm_create_custom_field($product_id){
woocommerce_wp_text_input(
array(
‘id’ => ‘wps_custom_price’,
‘value’ => ‘$custom_price’,
‘label’ => __( ‘Custom Price’, ‘your-theme’ ),
)
);
}