Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- add_filter('wcfm_allowed_order_status', function ($all_status) {
- if (wcfm_is_vendor()) {
- $remove_status = ['wc-refunded','wc-checkout-draft'];
- $all_status = array_diff_key($all_status, array_flip($remove_status));
- }
- return $all_status;
- }, 11);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement