Created
May 19, 2020 09:38
-
-
Save rameshelamathi/8594df7358b80608656bae26a5a15a12 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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