add_action('init', 'force_delete_stuck_woocommerce_cron', 0); function force_delete_stuck_woocommerce_cron() { global $wpdb; // מחיקה ישירה מהטבלה cron $wpdb->query(" DELETE FROM {$wpdb->options} WHERE option_name = 'cron' AND option_value LIKE '%cancel_failed_pending_order_after_ten_minutes%' "); // ניסיון מחיקה רגילה + Action Scheduler $timestamp = wp_next_scheduled('cancel_failed_pending_order_after_ten_minutes'); if ($timestamp) { wp_unschedule_event($timestamp, 'cancel_failed_pending_order_after_ten_minutes'); } if (function_exists('as_unschedule_all_actions')) { as_unschedule_all_actions('cancel_failed_pending_order_after_ten_minutes'); } echo '
✅ האירוע cancel_failed_pending_order_after_ten_minutes נמחק סופית מה-DB!
'; }

Orlyt Ben-Nes

מפת האתר

עמודים