Add custom payment methods2021-02-01T07:18:41+05:30

Home Forums WooWallet Withdrawal Add custom payment methods

Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • ivoirewifi
    Participant
    Post count: 6

    Hello! Please a need your help because I want to add 3 more custom payment gateway to withdrawal.
    Please help.🙏

    Subrata Mal
    Keymaster
    Post count: 207

    Hi,

    Sorry for the delayed response. Please let us know which payment methods you want to include.

    Thank You

    ivoirewifi
    Participant
    Post count: 6

    Mobile Money with ability to choose between 3 Network providers while making withdrawal request.

    Subrata Mal
    Keymaster
    Post count: 207

    Let us know if Mobile Money has payout API.

    ivoirewifi
    Participant
    Post count: 6

    Yes but I don’t wanna use API.
    All we need is to retrieve payment details from backend.
    Amount to withdraw:…
    User network provider: …
    User phone number :…

    Subrata Mal
    Keymaster
    Post count: 207

    Okay let us know which field you want in the user frontend

    ivoirewifi
    Participant
    Post count: 6

    1- Amount
    2- Select network: Orange , Flooz or MTN ( Number for each network must have been setup in payment settings)

    Subrata Mal
    Keymaster
    Post count: 207
    This reply has been marked as private.
    Vikramjit Chatterjee
    Participant
    Post count: 3

    Please find below the three crucial points to get resolved from your side regarding Wallet Withdrawel option. The points are:
    1] Since we dont have any payment Gateway we use WOO Wallet. in that case the users have been paying us via their Own UPI and then we add the paid amount manually in Woo Wallet balance. Hence when they buy anything from the site they directly pay the required amount from their Wallet Balance.
    2] As we dont have any payment Gateway the withdrawel request made by the users needs to be Accepted and deducted from the Woo Wallet Automatically. However, in reality we would transfer the Amount in their personal Bank accounts manually.
    We don’t have any other gateway. So it would be better to make it easier for the user.
    3] This is the reason it is Necessary that the Withdrawel system should be Semi Automatic.
    4] Since the present payment Bank transfer method requires all Users to fill out a form where SWIFT and IBAN Code sectios are Irrelevant for our Indian nationals as these Codes are not available with us instantly. therefore, we would ask you to either remove these 2 feilds or make them optional.
    5] So, we would request you to Add UPI as an another Option as payment method where users will need to provide only their UPI ID and Mobile numbers.

    Theerefore, please make these Customizations from your end as soon as possible else please guide us to resolve the above mentioned issues.

    Regards,

    Vikram

    Subrata Mal
    Keymaster
    Post count: 207

    Please use below-attached code into active 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' => __('Phone Number', 'woo-wallet-withdrawal'),
                    'name' => 'bacs_phone_no'
                ),
                array(
                    'label' => __('UPI ID', 'woo-wallet-withdrawal'),
                    'name' => 'bacs_upi_id'
                )
            );
            return $bank_account_details;
        }
    }
Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.
WhatsApp