• Resolved kaythi1

    (@kaythi1)


    Can’t get more than two payment gateways? Because I can not choose more than two.
    eg, bank transfer, check payment, customer payment gateway…

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Pepro Dev. Group

    (@peprodev)

    Hi, there’s no limit to number of gateways you wish to use, but you have to activate those first in WooCommerce payment options.

    Hi

    I have the same problems here, I do activate 10 payment gateway, however, I only can see two of them here

    please check here https://tinyurl.com/ybygnec9

    also, is there any possibility that I can duplicate the default BACS to user your plugin, since I have different bank detail when convert to different currency

    Thanks

    Thread Starter kaythi1

    (@kaythi1)

    I already fixed for this problem.
    There are some tweaks to the code, and after that I can add the payment gateways I want to add. Thank you.

    Plugin Author Pepro Dev. Group

    (@peprodev)

    Hi, could you please share with us the snippet you used, so we could help others too?

    Thread Starter kaythi1

    (@kaythi1)

    sorry for my late reply,
    I changed my code the following… (If you have any suggestions for multifile uploads, please let me know) Thank you.

    if ( 'upload_receipt' === $current_section ) {
    
            return array(
    
              array(
    
                'type'              => 'title',
    
                'id'                => 'upload_receipt_settings_section',
    
              ),
    
              array(
    
                'title'             => __("Payment methods",$this->td),
    
                'desc'              => __("Select Payment methods you wish to activate receipt uploading feature", $this->td),
    
                'id'                => 'peprobacsru_allowed_gatewawys',
    
                'default'           => 'bacs',
    
                'type'              => 'multiselect',
    
                'class'             => 'wc-enhanced-select',
    
                'css'               => 'min-width: 400px;',
    
                //'options'           => $this->get_wc_gateways(),
    
                // 'custom_attributes' => array(
    
                //   'multiple' => 'multiple',
    
                'options' => array (
                  'bacs' => 'bacs',
                  'cheque' => 'cheque',
                  'alg_custom_gateway_1' => 'alg_custom_gateway_1',
                )
    
              ),
    Plugin Author Pepro Dev. Group

    (@peprodev)

    Hi, thank you for your contribution.
    We have released a new version and fixed the issue.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Can’t get more than two payment gateways?’ is closed to new replies.