woocommerce_update_new_customer_past_order action-hookWC 1.0

Usage

add_action( 'woocommerce_update_new_customer_past_order', 'wp_kama_woocommerce_update_new_customer_past_order_action', 10, 2 );

/**
 * Function for `woocommerce_update_new_customer_past_order` action-hook.
 * 
 * @param  $order_id 
 * @param  $customer 
 *
 * @return void
 */
function wp_kama_woocommerce_update_new_customer_past_order_action( $order_id, $customer ){

	// action...
}
$order_id
-
$customer
-

Where the hook is called

wc_update_new_customer_past_orders()
woocommerce_update_new_customer_past_order
woocommerce/includes/wc-user-functions.php 271
do_action( 'woocommerce_update_new_customer_past_order', $order_id, $customer );

Where the hook is used in WooCommerce

Usage not found.