Magento 2: Get started

Available payment methods

Mollie for Magento 2 offers a wide range of payment methods that your customers can use to pay during checkout.

Apple Pay (incl. Apple Pay Direct), Bancontact, Belfius Pay Button, Billie, Blik, Credit/Debit cards, EPS, Gift cards & Vouchers, iDEAL; iDEAL in3, Klarna, paysafecard, Point of Sale, PostePay, Przelewy24, SEPA Bank Transfer, SOFORT Bank Transfer (Klarna: Online bank transfer), TWINT, KBC Payment Button.

For information on how to select the best payment methods for your business, refer to the Mollie Payment methods guide.

Features

Mollie for Magento 2 offers the following features to effectively manage your online payments:

  • Customize the payment experience
  • Localize your payment methods
  • Offer and manage subscriptions
  • Manage orders and payments

Install and connect

Enhance your Magento payment options with Mollie.

What you need to do in advance:

  • Create and successfully log in to your Mollie account.
  • Install Composer.
  • Ensure that you use Magento 2 version 2.3.3 or a newer release.

Install

  1. Connect to your Magento 2 environment, for example using SSH↗.
  2. Navigate to the root directory of your Magento 2 store and install Mollie for Magento 2:
    composer require mollie/magento2
    
  3. Activate the module:
    php bin/magento module:enable Mollie_Payment
    
  4. Optional: Verify whether the module installed properly:
    php bin/magento module:status Mollie_Payment
    
  5. Set up the module in your Magento 2 environment:
    php bin/magento setup:upgrade
    
  6. Clean the cache:
    php bin/magento cache:clean
    

Connect

Mollie gives you two API keys to authenticate Magento 2 requests:

  • Test key: Use this key when setting up and testing Mollie for Magento 2.
  • Live key: Use this key after Mollie has approved your account and you are ready to accept live payments.

To connect with Mollie, follow these steps:

  1. Log in to your Mollie Dashboard.
  2. Select the organization from the menu in the top-left corner of the dashboard's home page.

❗️

Important

To comply with UK regulations, UK-based merchants have to select a UK-registered organization to ensure that they use the correct API keys.

  1. Go to More > Developers > API keys.
  2. Copy the API keys.
  3. Log in to Magento 2.
  4. Go to Stores > Configuration.
  5. On the Configuration page, scroll to Mollie , select the arrow, and then General.
  6. Expand the Version section, and select Yes from the Enabled drop-down menu.
  7. Expand the API details section, and select Test from the Modus drop-down menu.
    We recommend enabling test mode until you are sure that everything works as you expect.
  8. Paste the test API key in its field.
  9. Select Test API key to ensure that your API key is correct.
  10. Save the changes.