Home › Forums › WooWallet Withdrawal › Withdrawal Methods Request
-
AuthorPosts
-
Hi,
I new on WooWallet and need some support for a function thar I sopose thar the plugin can do.
I’m from Agentina and here we just need thar BanckTransfer had four fiels on form request and the Amount Request.
(CBU, ALIAS, CUIT/DNI, NOMBRE y APPELLIDO)It’s posible that creat a form that the user need complet these info for each withdrawal request?
And how can I do to input a new method request for example?
Hi,
Thanks for reaching out. Yes, it can be done but we have to do some custom code.
Please use below-attached code in the theme function.php file
add_filter('woo_wallet_withdrawal_bacs_account', 'woo_wallet_withdrawal_bacs_account_callback'); if(!function_exists('woo_wallet_withdrawal_bacs_account_callback')){ function woo_wallet_withdrawal_bacs_account_callback($bank_account_details){ $bank_account_details = array( array( 'label' => __('CBU', 'woo-wallet-withdrawal'), 'name' => 'bacs_cbu' ), array( 'label' => __('ALIAS', 'woo-wallet-withdrawal'), 'name' => 'bacs_alias' ), array( 'label' => __('CUIT/DNI'), 'name' => 'bacs_cuit_dni' ), array( 'label' => __('NOMBRE y APPELLIDO', 'woo-wallet-withdrawal'), 'name' => 'bacs_nombre_y_appellido' ), ); return $bank_account_details; } }
Hi, perfect.
But one more inquiry.It’s posible put the Bank Transfer form on each Withdrawal Request?
Our idea is that each request have a single transfer info, and when the user request this needs complete the info again.
The reason is because some users request various withdrawal on the same moment for different bank accounts.
Sorry at this point this is not possible. But users can change the bank account details before sending a withdrawal requests.
OK. Perfect.
I suppose thar if I put some info transfer, send a request… this appears to me with the moment info no?
And the user can enter again on transfer, change info, and send another request… anda the bank transfer info of past request not changed?No, the previous entry will change.
Ok. It,s posible integrate some field on request withdral?
Yes, but we have to do some custom code then.
Perfect.
Give me the amount and if posible consider:
1) Develop directly on Withdraw requeste the same fields that we request on Bank Transfer.
2) This fields need showed on “wallet balance/movements” and showed on request.And please, we need this quickly. It’s posible, how many time?
This reply has been marked as private. -
AuthorPosts
- You must be logged in to reply to this topic.