cancel
Showing results for 
Search instead for 
Did you mean: 

Add card payment option to multishipping checkout

Add card payment option to multishipping checkout

Hi ,

 

In current Multishipping checkout there is no option for card payment. We have paytabs payment gateway. I would like to implement this so. Please guide me on this.

1 REPLY 1

Re: Add card payment option to multishipping checkout

Hi @tippanna_pawar 

 

Add below code in payment.xml of the payment method module that you are using or want to implement with multi shipping checkout:

 

<allow_multiple_address>1</allow_multiple_address>

 

<payment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Payment:etc/payment.xsd">
    <methods>
        <method name="payment_code">
            <allow_multiple_address>1</allow_multiple_address>
        </method>
    </methods>
</payment>

 

payment_code should be the payment method code for your integration. You might need to add custom js components for payment form.

 

If you want to add Braintree, PayPal, Authorize.net, or other built-in integrations to Multishipping, they won't work without customizations. Need to do customization. 

 

Cybersource payment integration will be available for Multishipping.

 

Hope this helps you!
Problem Solved! Click Kudos & Accept as Solution!