wclovers

Untitled

Aug 30th, 2023
1,024
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.22 KB | None | 0 0
  1. add_filter('wcfm_shipment_disable_order_status', function($status) {
  2.     foreach ($status as $key => $value) {
  3.         if ('pending' == $value) {
  4.             unset($status[$key]);
  5.         }
  6.     }
  7.     return $status;
  8. });
Advertisement
Add Comment
Please, Sign In to add comment