Skip to main content

Payment Processor not showing in checkout

You add payment processors to your Medusa instance by adding them as plugins in medusa-config.jsCopy to Clipboard:

medusa-config.js
const plugins = [
// ...
{
resolve: `medusa-payment-stripe`,
options: {
api_key: STRIPE_API_KEY,
webhook_secret: STRIPE_WEBHOOK_SECRET,
},
},
]
Report Incorrect CodeCopy to Clipboard

And installing them with your favourite package manager:

yarn add medusa-payment-stripe
Report Incorrect CodeCopy to Clipboard

However, to also show them as part of your checkout flow you need to add them to your regions.

Then, refer to this user guide to learn how to enable the payment processor in a region.


See Also

Was this page helpful?