Advertisement
wclovers

Untitled

Jul 31st, 2023
809
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.27 KB | None | 0 0
  1. add_filter('wcfm_allowed_order_status', function ($all_status) {
  2.     if (wcfm_is_vendor()) {
  3.         $remove_status = ['wc-refunded','wc-checkout-draft'];
  4.         $all_status = array_diff_key($all_status, array_flip($remove_status));
  5.     }
  6.     return $all_status;
  7. }, 11);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement