Magento 2: Set up subscriptions

Install Mollie subscriptions

  1. Connect to your Magento 2 environment, for example using SSH↗.

  2. Navigate to the root directory of your Magento 2 store in the terminal, and install Mollie Subscriptions:

    composer require mollie/magento2-subscriptions
  3. Activate the module:

    php bin/magento module:enable Mollie_Subscriptions
  4. Deploy the content in your Magento 2 environment, and clean the cache:

    php bin/magento setup:upgrade
    php bin/magento cache:flush

Enable subscriptions

  1. Log in to Magento 2.

  2. Go to Stores > Configuration.

  3. Scroll to Mollie, select the arrow, and then Subscriptions.

  4. Expand the General section, and in the Enabled drop-down, select Yes.

  5. Select a shipping method from the Shipping method drop-down menu.

  6. Save the changes.