We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b5f963 commit e67014aCopy full SHA for e67014a
woocommerce-delivery-notes/includes/component/tracking-data/ts-tracking.php
@@ -233,7 +233,7 @@ public static function ts_add_cron_schedule( $schedules ) {
233
*/
234
public static function ts_schedule_cron_job () {
235
if ( ! wp_next_scheduled( self::$plugin_prefix . '_ts_tracker_send_event' ) ) {
236
- wp_schedule_event( time(), 'once_in_week', self::$plugin_prefix . '_ts_tracker_send_event' );
+ wp_schedule_event( time() + 604800, 'once_in_week', self::$plugin_prefix . '_ts_tracker_send_event' );
237
}
238
239
0 commit comments