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.
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.