Advertisement
mbcreation

Pay. reminder: enable the checkout link for several statuses

Jul 14th, 2015
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. /* Code to paste into your functions.php theme file */
  2.  
  3. add_filter('woocommerce_valid_order_statuses_for_payment', 'my_valid_order_statuses_for_payment', 10, 2);
  4. function my_valid_order_statuses_for_payment($statuses, $order)
  5. {
  6.     //change here the status list
  7.     return array( 'pending', 'failed', 'on-hold' );
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement