Created
October 13, 2018 06:27
-
-
Save malsubrata/c3ab80ccf818710875a27635c06387fc to your computer and use it in GitHub Desktop.
Credit purchase status
This file contains hidden or 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('wallet_credit_purchase_order_status', 'wallet_credit_purchase_order_status'); | |
function wallet_credit_purchase_order_status($status){ | |
$status = array('completed'); | |
return $status; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment