woocommerce_core_profiler_step_complete action-hookWC 6.5.0

Fires when a core profiler step is completed.

Usage

add_action( 'woocommerce_core_profiler_step_complete', 'wp_kama_woocommerce_core_profiler_step_complete_action' );

/**
 * Function for `woocommerce_core_profiler_step_complete` action-hook.
 * 
 * @param string $step The completed step name.
 *
 * @return void
 */
function wp_kama_woocommerce_core_profiler_step_complete_action( $step ){

	// action...
}
$step(string)
The completed step name.

Changelog

Since 6.5.0 Introduced.

Where the hook is called

OnboardingProfile::core_profiler_step_complete()
woocommerce_core_profiler_step_complete
woocommerce/src/Admin/API/OnboardingProfile.php 312
do_action( 'woocommerce_core_profiler_step_complete', $step );

Where the hook is used in WooCommerce

Usage not found.