Withdrawal Methods Request2021-03-29T02:24:37+05:30

Home Forums WooWallet Withdrawal Withdrawal Methods Request

Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • CAIO FE DE OLIVEIRA
    Participant
    Post count: 5

    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?

    Subrata Mal
    Keymaster
    Post count: 207

    Hi,

    Thanks for reaching out. Yes, it can be done but we have to do some custom code.

    Subrata Mal
    Keymaster
    Post count: 207

    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;
        }
    }
    CAIO FE DE OLIVEIRA
    Participant
    Post count: 5

    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.

    Subrata Mal
    Keymaster
    Post count: 207

    Sorry at this point this is not possible. But users can change the bank account details before sending a withdrawal requests.

    CAIO FE DE OLIVEIRA
    Participant
    Post count: 5

    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?

    Subrata Mal
    Keymaster
    Post count: 207

    No, the previous entry will change.

    CAIO FE DE OLIVEIRA
    Participant
    Post count: 5

    Ok. It,s posible integrate some field on request withdral?

    Subrata Mal
    Keymaster
    Post count: 207

    Yes, but we have to do some custom code then.

    CAIO FE DE OLIVEIRA
    Participant
    Post count: 5

    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?

    Subrata Mal
    Keymaster
    Post count: 207
    This reply has been marked as private.
Viewing 11 posts - 1 through 11 (of 11 total)
  • You must be logged in to reply to this topic.
WhatsApp