Skip to content

Instantly share code, notes, and snippets.

@rameshelamathi
Created May 19, 2020 09:38
Show Gist options
  • Save rameshelamathi/8594df7358b80608656bae26a5a15a12 to your computer and use it in GitHub Desktop.
Save rameshelamathi/8594df7358b80608656bae26a5a15a12 to your computer and use it in GitHub Desktop.
add_filter('rnoc_abandoned_cart_order_status','rnoc_abandoned_cart_order_status',10,2);
function rnoc_abandoned_cart_order_status($order_status,$order){
if(in_array($order_status,array("failed"))){
$order_status = "pending";
}
return $order_status;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment