Guides • Accept Payments
Configuration
doc

Configure the Revolut payment apps

After installing the Revolut Pay or Revolut Payment Gateway app, you need to configure it to start accepting payments through your Shopify store.

Connect your account

info

Your Revolut Business account was connected during the installation of the app. No further action is required to connect your account.

General configuration

Now, you can proceed to configure the plugin settings.

Shopify - App settings

To configure the app:

  1. Log in to your Shopify dashboard as an admin.

  2. Navigate to Settings > Payments from the left sidebar.

  3. Under the Additional payment methods, click the Revolut Pay or Revolut Payment Gateway app.

  4. In the settings page, you can configure the following options:

    • Payment processors: Select which payment processors you want to accept. Possible options: Visa, Mastercard, Maestro, and Revolut.
    • Test mode: Use this option to enable or disable test mode for processing payments.
      • Disabled: In this mode, your store will process real transactions. We recommend testing the plugin in Test mode before going live.
      • Enabled: In this mode, your store will simulate all transactions. This will ensure that no real purchases are made through your store, so you can test all features before going live in production.
  5. Customers will be able to pay using the selected payment processors.

  6. Click Save to apply the changes.

Test your configuration

Enable test mode

To test payments using the Revolut Pay or Revolut Payment Gateway app:

  1. Log in to your Shopify dashboard as an admin.

  2. Navigate to Settings > Payments from the left sidebar.

  3. Under the Additional payment methods, click the Revolut Pay or Revolut Payment Gateway app.

  4. Enable the Test mode:

    Shopify - Test mode

  5. Click Save to apply the changes.

You can start testing payments using our test cards.

Start accepting payments

Once you have finished testing, disable test mode to start accepting real payments:

  1. Log in to your Shopify dashboard as an admin.
  2. Navigate to Settings > Payments from the left sidebar.
  3. Under the Additional payment methods, click the Revolut Pay or Revolut Payment Gateway app.
  4. Disable the Test mode.
  5. Click Save to apply the changes.
success

You're all set! Your Shopify store is now configured to accept payments via Revolut.

Additional settings

Reorder payment gateways on your Shopify checkout page

info

Reordering payment gateways is only available for Shopify Plus accounts.

This guide provides instructions for changing the display order of payment gateways on Shopify stores' checkout page.

Shopify lets you interact with your installed payment gateways via Shopify Scripts. You can use these scripts to reorganise the payment gateways' display order on your checkout page. To do this, follow these steps:

  1. Log in to your Shopify admin dashboard and navigate to Apps > Script Editor.

  2. Click on Create script.

  3. On the pop-up window, navigate to the Payment gateways tab, select Blank template, and click Create script.

  4. Navigate to the Code panel, and delete the default code from the Ruby source code section.

  5. Depending on which gateway app you installed, copy-paste the following script in the Ruby source code section:

    desired_order = ["Revolut Pay", "Shopify Payments", "Cash on Delivery (COD)", "Money Order"]
    Output.payment_gateways = Input.payment_gateways.sort_by do |payment_gateway|
    desired_order.index(payment_gateway.name) || Float::INFINITY
    end

    The desired_order list should contain the name of your installed payment gateways. The order of elements from left to right will determine the display order of the payment gateways from top to bottom on the checkout page.

  6. Modify the order of items to change the display order of payment gateways. For higher conversion rates, we recommend displaying Revolut's gateways at the first place.

  7. Click Run script, then see the results on your preview store.

  8. Save or publish your script:

    • Click Save draft to save an unpublished draft.
    • Click Save and publish to save and activate your script.
caution

The following limitations apply to scripts:

  • Shopify Scripts do not interact with accelerated or express checkouts like Apple Pay or Google Pay. For more information, see: Accelerated checkouts and dynamic checkout buttons.
  • Shopify Scripts will be deprecated on August 28, 2025, and replaced by Shopify Functions. Our documentation will be updated with guides on migrating to Shopify Functions to assist you in the transition.
Was this page helpful?