Files
medusa-store/www/apps/docs/content/troubleshooting/missing-payment-providers.md
Shahed Nasser 547b16ead5 docs: fix code block titles (#5733)
* docs: fix code block titles

* remove console

* fix build error
2023-11-27 16:08:10 +00:00

854 B

title
title
Payment Processor not showing in checkout

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

const plugins = [
  // ...
  {
    resolve: `medusa-payment-stripe`,
    options: {
      api_key: STRIPE_API_KEY,
      webhook_secret: STRIPE_WEBHOOK_SECRET,
    },
  },
]

And installing them with your favourite package manager:

npm install medusa-payment-stripe

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