woocommerce_helper_subscriptions_refresh
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
woocommerce_helper_subscriptions_refresh
woocommerce/includes/admin/helper/class-wc-helper.php 1026
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' ) );