-
Notifications
You must be signed in to change notification settings - Fork 9.3k
/
Copy pathpayment.xml
32 lines (32 loc) · 1.02 KB
/
payment.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0"?>
<!--
/**
* Copyright © 2013-2017 Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
-->
<payment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Payment:etc/payment.xsd">
<groups>
<group id="offline">
<label>Offline Payment Methods</label>
</group>
</groups>
<methods>
<method name="banktransfer">
<allow_multiple_address>1</allow_multiple_address>
</method>
<method name="cashondelivery">
<allow_multiple_address>1</allow_multiple_address>
</method>
<method name="checkmo">
<allow_multiple_address>1</allow_multiple_address>
</method>
<method name="purchaseorder">
<allow_multiple_address>1</allow_multiple_address>
</method>
<method name="free">
<allow_multiple_address>1</allow_multiple_address>
</method>
</methods>
</payment>