Spanish version of this page | Aquí puedes encontrar la versión en español de esta página
NOTE: This page is about payment methods, which is how customers can pay you for products or services. If you’re looking for information about how money from sales is transferred to you (the merchant), please see our Deposits documentation.
WooPayments can take payments from customers using credit and debit cards, as well as additional forms of payment, directly from your store’s checkout page. Some of these payment methods may only be available in certain countries or regions, while others are only available on certain types of devices.
Credit and debit cards
↑ Back to topWooPayments can charge most common card brands, including:
- American Express
- Cartes Bancaires
- China UnionPay (CUP)
- Diners Club
- Discover
- eftpos Australia
- Japan Credit Bureau (JCB)
- Mastercard
- Visa
Mastercard and Visa cards can be accepted by merchants in every country. Other brands have some restrictions but are few and rarely encountered in practice.
NOTE: Merchants in Japan must apply to accept JCB card payments. Learn more about how to apply, as well as the necessary requirements to enable JCB.
Express checkout methods
↑ Back to topExpress checkout methods allow customers to pay even faster using their phone or any compatible device. WooPayments has the following built-in express checkout methods:
Please also see the Apple Pay and Google Pay compatibility page for more information.
Buy now, pay later payment methods
↑ Back to topBuy now, pay later (BNPL) payment methods, once enabled, allow customers to pay for goods or services over time through installments. With WooPayments, merchants in eligible countries can accept BNPL payments via:
- Affirm
- Afterpay (also known as Clearpay in the UK)
- Klarna
Learn more about BNPL payment methods and how to enable them.
Additional payment methods
↑ Back to topAdditional payment methods, once enabled, are only displayed to customers in eligible regions or countries. With WooPayments, you can accept payments via:
- Bancontact
- BECS Direct Debit (closed beta)
- EPS
- iDEAL
- Klarna
- Przelewy24
- Sofort (soon to be retired)
Learn more about these additional payment methods and how to enable them.
Reordering payment methods
↑ Back to topYou can change the order in which the WooPayments payment methods are shown in the checkout using a code snippet. Please see the example code below.
add_filter( 'pre_option_woocommerce_gateway_order', 'set_custom_gateway_order' );
function set_custom_gateway_order( $ordering ) {
return [
'woocommerce_payments_klarna' => 0,
'woocommerce_payments_affirm' => 1,
'woocommerce_payments' => 2,
];
}
There are a few things to be aware of when using such a snippet:
- Our support staff cannot help write, modify, or troubleshoot custom code. The snippet above is merely an example for educational purposes.
- Any payment methods you have enabled but not assigned to a specific index in the snippet will be added to the end of the list.