WooPayments: Payment Methods

Spanish version of this pageAquí 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 Payouts 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 top

WooPayments 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 can be accepted by merchants in every country. Other brands have some restrictions, but they are few and rarely encountered in practice.

Express checkout methods

↑ Back to top

Express 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 top

Buy 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 / Clearpay
  • Klarna

Learn more about BNPL payment methods.

Local payment methods

↑ Back to top

Local payment methods, once enabled, are only displayed to customers in eligible regions or countries. With WooPayments, you can accept payments via:

Learn more about these local payment methods.

Reordering payment methods

↑ Back to top

You 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( 'option_woocommerce_gateway_order', 'my_custom_gateway_order', 1 );

function my_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 will be added to the end of the list.
  • Using a priority higher than 1 may result in the snippet not working.

Other payment methods

↑ Back to top

If you’re looking for other payment providers, such as PayPal, Authorize.net, or Square, those (and others!) are available as separate extensions.