woocommerce_tracker_event_recurrence filter-hookWC 2.3.0

How frequent to schedule the tracker send event.

Usage

add_filter( 'woocommerce_tracker_event_recurrence', 'wp_kama_woocommerce_tracker_event_recurrence_filter' );

/**
 * Function for `woocommerce_tracker_event_recurrence` filter-hook.
 * 
 * @param  $string 
 *
 * @return 
 */
function wp_kama_woocommerce_tracker_event_recurrence_filter( $string ){

	// filter...
	return $string;
}
$string
-

Changelog

Since 2.3.0 Introduced.

Where the hook is called

WooCommerce::schedule_tracking_action()
woocommerce_tracker_event_recurrence
woocommerce/includes/class-woocommerce.php 1730
$tracker_recurrence = apply_filters( 'woocommerce_tracker_event_recurrence', 'daily' );

Where the hook is used in WooCommerce

Usage not found.