MobilePay Checkout
Guide to setting up MobilePay Checkout as a payment option in your Shoporama online shop.
MobilePay Checkout lets your customers pay quickly with MobilePay—without having to enter their address information manually. The integration works through QuickPay.
Requirements
- A QuickPay account with MobilePay Checkout enabled
- A payment gateway set up in Shoporama with "mobilepay" as the payment method
1. Enable MobilePay Checkout in Shoporama
- Go to Payment Gateways in the admin panel
- Create a new gateway or edit an existing one
- Make sure "mobilepay" is listed under payment methods
- Check the box "Retrieve customer address from MobilePay/PayPal"
- Click Save

2. Add a MobilePay button to your theme
You must add a button to your cart template (basket.html) that redirects the customer to MobilePay Checkout. The button must submit the variable ` invoice_address_selection ` via POST to ` /basket`:
<input type="submit" name="invoice_address_selection"
value="Pay with MobilePay Checkout"
class="btn btn-primary" />
Tip
You can check whether your store supports MobilePay Checkout using an if statement: <{if $webshop->hasInvoiceAddressSelection()}>. The button will then only appear when it is enabled.
3. MobilePay from other pages (optional)
You can also allow customers to go directly to MobilePay Checkout from pages other than the cart, such as the product page. Create a form that sends a POST request to /basket:
<form action="/basket" method="post">
<input type="submit" name="invoice_address_selection"
value="Quick payment with MobilePay" />
</form>
Important to know
Note
MobilePay Checkout fundamentally changes how order information is collected. Shoporama does not receive the customer’s address information until after payment is complete—and the information cannot be verified in advance. Therefore, be extra careful to ensure that customers’ information is valid.
Frequently Asked Questions
Why isn’t the phone number filled in automatically in MobilePay?
MobilePay no longer supports autofilling the phone number from the online store. The customer must enter their number manually the first time they pay with MobilePay from a computer. However, the number is stored in the browser’s cache for future use. When using a mobile device, the customer is redirected directly to the MobilePay app, where this feature is not applicable.
Read more: Phone number in MobilePay.
Need help with setup? Contact us at support@shoporama.dk.
Related articles
Customize your checkout
Guide to customizing the checkout flow in your Shoporama online store, including payment methods, shipping, customer fields and gift cards.
Settings for transactional emails
How to set when Shoporama automatically sends transactional emails like abandoned baskets, payment reminders and product reviews.
Order flow and automated emails
Understand the entire flow from checkout to order confirmation. Learn when automatic emails are sent, what happens with different payment methods...