woocommerce_product_options_pricing action-hookWC 1.0

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

In file: /includes/admin/meta-boxes/views/html-product-data-general.php
woocommerce_product_options_pricing
woocommerce/includes/admin/meta-boxes/views/html-product-data-general.php 73
do_action( 'woocommerce_product_options_pricing' );

Where the hook is used in WooCommerce

Usage not found.