PluginProbe
NotificationX – FOMO, Live Sales Notification, WooCommerce Sales Popup, GDPR, Social Proof, Announcement Banner & Floating Notification Bar / trunk
NotificationX – FOMO, Live Sales Notification, WooCommerce Sales Popup, GDPR, Social Proof, Announcement Banner & Floating Notification Bar vtrunk
3.3.1 3.3.0 3.2.14 3.2.13 3.2.12 3.2.11 3.2.10 3.2.9 3.2.8 3.2.7 trunk 0.2.5.5 0.2.5.6 0.2.5.7 1.0.0 1.0.1 1.0.2 1.0.3 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.2.0 1.2.1 All 156 releases
← All changes | includes/Core/Maintenance.php +5 -4 3.2.12trunk View file →
@@ -58,11 +58,11 @@
58 58 }
59 59 }
60 60
61 61 /**
62 - * Daily routine. Delegates to the existing usage/insights pipeline, which
63 - * remains fully consent-gated (it no-ops unless the site has opted in to
64 - * tracking) — this only guarantees the once-per-day sync actually fires.
62 + * Daily routine. Delegates to the existing usage/insights pipeline — this
63 + * only guarantees the once-per-day sync actually fires; the pipeline
64 + * itself decides whether there is anything to send.
65 65 *
66 66 * @return void
67 67 */
68 68 public function run() {
@@ -73,9 +73,10 @@
73 73 $insights = PluginInsights::get_instance( NOTIFICATIONX_FILE );
74 74
75 75 if ( method_exists( $insights, 'do_tracking' ) ) {
76 76 // force = true so the daily schedule reliably attempts the sync;
77 - // do_tracking() still honors opt-in/opt-out and NX_DEBUG internally.
77 + // do_tracking() still honors the programmatic opt-out and NX_DEBUG
78 + // internally.
78 79 $insights->do_tracking( true );
79 80 }
80 81 }
81 82