@ebereorisi,
What type of back-end confirmation are you looking for?
For example when a user tops up their wallet and checks out with woocommerce Direct bank transfer payment option; The money is automatically credited to their wallet balance. Is there a way to put the wallet credit to their account on hold then credit their account manually after I confirm that their bank transfer was successful?
@ebereorisi,
use below code to theme function.php file
add_filter('wallet_credit_purchase_order_status', 'wallet_credit_purchase_order_status_callback');
function wallet_credit_purchase_order_status_callback(){
return array('completed');
}
Using this code will not credit wallet balance to user wallet until the order status is completed.
Thank you.
Thank you very much. It works perfectly