woocommerce_helper_subscriptions_refresh action-hookWC 8.3.0

Fires when Helper subscriptions are refreshed.

Usage

add_action( 'woocommerce_helper_subscriptions_refresh', 'wp_kama_woocommerce_helper_subscriptions_refresh_action' );

/**
 * Function for `woocommerce_helper_subscriptions_refresh` action-hook.
 * 
 * @return void
 */
function wp_kama_woocommerce_helper_subscriptions_refresh_action(){

	// action...
}

Changelog

Since 8.3.0 Introduced.

Where the hook is called

WC_Helper::refresh_helper_subscriptions()
woocommerce_helper_subscriptions_refresh
woocommerce/includes/admin/helper/class-wc-helper.php 993
do_action( 'woocommerce_helper_subscriptions_refresh' );

Where the hook is used in WooCommerce

woocommerce/includes/tracks/events/class-wc-extensions-tracking.php 23
add_action( 'woocommerce_helper_subscriptions_refresh', array( $this, 'track_helper_subscriptions_refresh' ) );