woocommerce_product_options_pricing
Action that allows to render additional fields for price related settings in the product editor.
Usage
add_action( 'woocommerce_product_options_pricing', 'wp_kama_woocommerce_product_options_pricing_action' );
/**
* Function for `woocommerce_product_options_pricing` action-hook.
*
* @return void
*/
function wp_kama_woocommerce_product_options_pricing_action(){
// action...
}Where the hook is called
woocommerce_product_options_pricing
woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php 96
do_action( 'woocommerce_product_options_pricing' );