Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rameshelamathi/c43e4f60cc1d9f2bf9560b4243acfe8c to your computer and use it in GitHub Desktop.
Save rameshelamathi/c43e4f60cc1d9f2bf9560b4243acfe8c to your computer and use it in GitHub Desktop.
Snippet to treat cancelled and failed orders as abandoned carts.
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("cancelled","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