payment2.xml 895 B

12345678910111213141516171819202122232425262728293031
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. /**
  4. * Copyright © Magento, Inc. All rights reserved.
  5. * See COPYING.txt for license details.
  6. */
  7. -->
  8. <payment xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  9. xsi:noNamespaceSchemaLocation="urn:magento:module:Magento_Payment:etc/payment.xsd">
  10. <credit_cards>
  11. <type id="AE" order="0">
  12. <label>American Express</label>
  13. </type>
  14. <type id="SO" order="90">
  15. <label>Solo</label>
  16. </type>
  17. </credit_cards>
  18. <groups>
  19. <group id="any_payment">
  20. <label>Any Payment Methods</label>
  21. </group>
  22. <group id="offline">
  23. <label>Offline Payment Methods</label>
  24. </group>
  25. </groups>
  26. <methods>
  27. <method name="deny-method">
  28. <allow_multiple_address>0</allow_multiple_address>
  29. </method>
  30. </methods>
  31. </payment>