WordPress OSINT, maintenance or security needs? Reach out!
TLDWP

Plugin: woo-vipps (Used by 1,086 domains)

Pay with Vipps and MobilePay for WooCommerce

👤 WP Hosting AS 📦 v5.3.2 🔗 Plugin Homepage

Official Vipps MobilePay payment plugin for WooCommerce. Let your Norwegian, Danish, and Finnish customers pay with Vipps and MobilePay for an easy, fast, and familiar shopping experience

Vipps is used by more than 93 % of Norway’s population (4.2 million users).

MobilePay is used by more than 92 % of Denmark’s population (4.4 million users), and approximately 59 % of Finland’s population (2.8 million users).

Vipps and MobilePay are payment methods offered by Vipps MobilePay.

When you enable this plugin, you will choose between offering either Vipps or MobilePay as a payment method for your customers – hence “Vipps/MobilePay” going forward.

This is the official plugin for Vipps/MobilePay Checkout, Vipps/MobilePay ePayments (Vipps Nettbetaling), Vipps MobilePay Express (Vipps MobilePay Hurtigkasse) and Vipps/MobilePay recurring payments. Increase your conversion rate by letting your customers choose Vipps/MobilePay directly in the checkout or even do an Express Checkout (Vipps only) from the cart or a product page directly.

You can also do important back office tasks such as capture and refund directly from WooCommerce. Easy for your customer and easy for you.

Read information from Vipps MobilePay about the plugin.

Vipps/MobilePay Checkout

With Vipps/MobilePay Checkout enabled in the plugin, you will get a complete checkout in your webshop, designed by Vipps MobilePay. It contains regular Vipps/MobilePay payments, a card payment option for those that can’t or won’t use Vipps/MobilePay, as well as the ability to get the shipping address of the customer in an easy way. Read more about Vipps MobilePay Checkout here

Vipps/MobilePay ePayment

When you enable this plugin, your customers will be able to choose Vipps/MobilePay as a payment method in the checkout. There is no need to go via a third party payment method. If your customer choose Vipps/MobilePay, they fill in their name and address and is then asked to enter their phone number in the Vipps/MobilePay dialogue. They then confirms the payment in the Vipps/MobilePay app. Customer info like name and address is sent to the store from Vipps MobilePay.

Vipps/MobilePay recurring payments

Vipps/MobilePay recurring payments is perfect for you if you run a web shop with subscription based services or other products that would benefit from subscriptions.

With Vipps/MobilePay recurring payments you can:

  • Sell recurring products (virtual and physical)
  • Offer subscription services

See How it works for an overview.

Recurring payments requires WooCommerce Subscriptions and a Vipps MobilePay MSN with recurring payments added.

MobilePay Reservations are currently for 14 days

When a payment is completed with Vipps MobilePay, the money will be reserved, but only transferred to the merchant when the order is set to “Complete” or the money is captured manually. For MobilePay, this reservation period is 14 days, so you will need to ship and fulfill orders before this; or to make an agreement with the customer to capture the money before this period is over. For Vipps, the period is 180 days. For payments made by credit card in Vipps/MobilePay Checkout, the period can again be as short as 7 days.
For details, please read the developer FAQ.

If the order only contains virtual and downloadable products, the plugin will capture the order automatically and set the order to “Completed” as is the standard WooCommerce rule.

Vipps MobilePay Express

When you enable Vipps MobilePay Express, your customers can choose between the regular checkout or to go directly to Vipps or MobilePay. If they choose Vipps or MobilePay, they just submit their phone number, and the rest of the checkout process is done in the Vipps or MobilePay app.

Since Vipps MobilePay knows who the customers are, they don’t have to enter all their personal information. The customer just choose the shipping method and accepts the payment. Vipps MobilePay will send all the necessary info back to the store. Easy, fast and secure.

The express checkout can be done in the following ways:

  • From the cart
  • From the category pages
  • From the product page
  • From shareable links distributed by email, banners, etc.
  • From QR codes distributed digitally or in print

Settings for the cart, category and product pages can be found in the WooCommerce settings for the Vipps MobilePay payment gateway.

Shareable links and QR codes can be generated from the Vipps/MobilePay tab on the product page.

How to get started

  • Sign up in the Vipps MobilePay portal and choose your product.
  • After 1-2 days you will get an email with login details to Vipps MobilePay Business Portal, where you can get the API credentials
  • Download and install the plugin
  • Configure the plugin

How to install the plugin

  1. Install the plugin using WordPress’ built-in installer. The plugin can also be installed manually by upload the plugin files to the /wp-content/plugins/ directory.
  2. Activate the plugin through the ‘Plugins’ screen in WordPress.
  3. Go to the WooCommerce Settings page and choose Payment Gateways (Betalinger) and enable Vipps/MobilePay.
  4. Go the settings page for the Vipps MobilePay plugin and enter your Vipps MobilePay account keys. Your account keys are available in the Vipps Business Portal (detailed info in the section below)

How to get Vipps MobilePay account keys from Vipps MobilePay Business Portal

  1. Sign in to the Vipps MobilePay Portal at https://portal.vippsmobilepay.com/ using Bank ID
  2. Select the “Utvikler” (“Developer”) tab and choose Production Keys. Here you can find the merchant serial number (6 figures)
  3. Click on “Show keys” under the API keys column to see “Client ID”, “Client Secret” and “Vipps MobilePay Subscription Key”

Contributing on Github

This project is hosted on Github at: https://github.com/vippsas/vipps-woocommerce

Extending the Order Management API integration

From version 1.10.0, this plugin implements the Vipps MobilePay Order Management API, sending a receipt to the customers’ app, and sending the order confirmation link as the Order Confirmation link category. You can, using this api, send over an image and a link for the categories receipt (RECEIPT), ticket (TICKET), shipping (DELIVERY), booking (BOOKING) and a general category (GENERAL).

For instance, if you have a page or url for tracking shipping, you can add this to the customers’ app by extending the ‘woo_vipps_add_order_categories’ filter like so:

   add_filter('woo_vipps_add_order_categories', function ($categories, $order, $gateway) {
          $shippingpagedata = array(
            'link' => , 
            'image' => ,
            'imagesize' => );
          $categories['DELIVERY'] = $shippingpagedata;
          return $categories;
      }, 10, 3);

You can similarily send ticket information (with e.g. a QR code) for the TICKET or BOOKING category and so forth.

Javascript filters and actions

From version 1.1.13 you can also modify the javascript using the new WP hooks library for javascript:
* ‘vippsBuySingleProduct’ – action which is run whenever a customer tries to buy a single product using express checkout
* ‘vippsBuySingleProductCompatMode’ – filter which should return true or false, if true, the compatibility mode action will be run instead of the standard ajax.
* ‘vippsBuySingleProductCompatModeAction’ – filter which should return a javascript function to run when buying a product and compatibility mode is on. Will normally press the “Buy” button for you.
* ‘vippsRemoveErrorMessages’ – runs when Vipps MobilePay error messages are to be removed.
* ‘vippsErrorMessage’ – runs for every Vipps MobilePay error message added with Javascript. Takes the message as an argument
* ‘vippsAddErrorMessage’ – runs when an error message is about to be added. Takes the message as an argument
* ‘vippsInit’ – runs when a page with a Vipps MobilePay button is initialzed
* ‘vippsStatusCheckErrorHandler’ – A filter that should return function taking a statustext and an error object. It receives the default error handler, and is called when checking the order status with ajax for some reason ends up in an error.

DomainExposuresHeadersLast Checked
d*r*b*t*k*o*l*n*.no (WP 6.9.4) F 2026-05-09 14:42:45
i*l*s.no C 2026-05-09 12:54:57
n*r*e*a*a*m*n.no (WP 6.9.4) D 2026-05-09 12:54:56
n*r*b*.no (WP 6.9.4) F 2026-05-09 12:51:16
n*r*i*p*i*t.no C 2026-05-09 12:45:04
n*r*i*m*n*s*o*a*e*.fi (WP 6.9.4) F 2026-05-09 12:45:04
n*r*o*g*a*l*n.no (WP 6.9.4) F 2026-05-09 12:34:54
t*i*o*e*s*a*.no (WP 6.9.4) D 2026-05-09 11:52:06
k*p*r*p*h*.fi (WP 6.9.4) F 2026-05-09 11:51:26
t*i*k*i*j*.com (WP 6.9.4) D 2026-05-09 11:48:18
n*n*i*e*i*n.no (WP 6.9.4) F 2026-05-09 10:53:18
s*b*t*k*e*l*l*e*a*m*r.no (WP 6.9.4) F 2026-05-09 08:43:15
k*m*l*.no (WP 6.8.5) C 2026-05-09 07:09:43
n*b*.s*g*o*.no F 2026-05-09 04:54:58
n*r*r*m*i*t*r*s.no F 2026-05-09 04:47:30
c*r*e*.no (WP 6.9.4) F 2026-05-09 02:42:48
e*t*s*o*t.com (WP 6.9.4) F 2026-05-09 01:14:18
f*l*t*u*.dk (WP 6.9.4) F 2026-05-09 00:05:24
t*o*f*s*i*.com (WP 6.9.4) F 2026-05-08 23:34:08
t*o*f*n*a*t.com (WP 6.7.5) F 2026-05-08 23:34:08
s*c*m*i*t*r.com F 2026-05-08 23:28:17
v*i*t*t*r*t.fi F 2026-05-08 22:16:48
s*u*i*n*.no F 2026-05-08 21:41:15
e*v*r*e*s*e*.w*c*m*t*g*n*.com D 2026-05-08 20:24:41
s*u*i*f*a.no (WP 6.9.4) D 2026-05-08 20:24:29
b*w*l*e.no D 2026-05-08 20:24:29
t*e*e*s*a*p*l.com (WP 6.9.4) F 2026-05-08 20:24:03
c*c*e*e*g*m*s.com (WP 6.8.5) F 2026-05-08 19:59:27
j*c*s*o*e*n*w*l*.com (WP 6.9.4) C 2026-05-08 19:26:40
k*f*e*r*i*e*.no (WP 6.9.4) F 2026-05-08 17:05:09
n*x*m*n*a.no (WP 6.9.4) F 2026-05-08 17:05:08
n*n*l*u*s*a*d.no (WP 6.9.4) F 2026-05-08 17:05:08
m*k*n*s*a*d.com F 2026-05-08 15:23:02
c*n*t*u*t*n*m*n*h.com (WP 6.6.5) F 2026-05-08 14:55:21
p*a*o*s*o*t.com (WP 6.9.4) C 2026-05-08 12:47:58
b*r*e*f*l*e*v*r*s*e*.no (WP 6.9.4) F 2026-05-08 10:55:44
s*s*k*d*t*r*.com (WP 6.9.4) F 2026-05-08 10:48:15
b*d*f*y*r*g*e*.no (WP 6.9.4) F 2026-05-08 10:23:39
l*l*e*r*m*.no (WP 6.9.4) F 2026-05-08 10:23:30
i*a*a*j*n.no F 2026-05-08 10:00:22
n*t*b*t*k*.r*n*f*.no (WP 5.8.13) ⚠️ F 2026-05-08 09:19:40
b*t*k*.g*o*p*r*n*r.no F 2026-05-08 09:01:08
s*s*n*a*o*a*a.com B 2026-05-08 08:23:54
s*s*n*a*a*i*a*.com B 2026-05-08 08:20:52
v*r*e*e*.no B 2026-05-08 07:57:15
b*a*e*a*e*.no B 2026-05-08 07:12:41
s*i*a*i*h*p.no D 2026-05-08 07:07:20
b*a*t*s*o*o*e.com F 2026-05-08 03:23:52
v*k*b*l.no (WP 6.8.5) F 2026-05-07 23:27:55
c*o*s*o*e.no 🔓 F 2026-05-07 23:24:16
l*r*i*u*.com B 2026-05-07 22:33:14
s*i*i*s*o*.no (WP 6.9.4) F 2026-05-07 22:15:58
a*e*d*l*t*d*n*e.no (WP 6.9.4) F 2026-05-07 18:36:20
k*r*h*b*y.no (WP 6.9.4) F 2026-05-07 18:21:04
t*o*k*f*e*u*e*.com (WP 6.9.4) F 2026-05-07 18:16:31
p*o*t*t*k*e*t.no (WP 6.9.4) F 2026-05-07 16:50:48
w*s*s*s*e*.no F 2026-05-07 15:46:02
p*r*o*s*a*e*o*b*n*e*.com F 2026-05-07 14:55:42
t*l*k*n*e*.no (WP 6.9.4) F 2026-05-07 14:36:15
c*n*r*t*c*n*r*m.com D 2026-05-07 14:29:56
w*b*s*b*.no B 2026-05-07 14:27:03
n*t*b*t*k*e*.p*a*t*o*m*2.com F 2026-05-07 14:25:18
t*l*m*r*k*a*t.no (WP 6.9.4) C 2026-05-07 14:09:36
f*a*a.no (WP 6.9.4) D 2026-05-07 14:01:57
p*l*t*k*i*k.no F 2026-05-07 13:02:14
b*k*e*v.no (WP 6.8) D 2026-05-07 11:59:34
p*o*e*t*c*d*m*.com F 2026-05-07 09:46:02
a*a*o*e*a.no (WP 6.9.4) F 2026-05-07 08:18:45
n*l*n*l*.no (WP 6.9.4) F 2026-05-07 08:18:45
l*s*o*l*g.no (WP 6.8.5) F 2026-05-07 07:57:43
l*r*i*u*.no C 2026-05-07 07:33:19
m*t*o*.no (WP 6.9.4) F 2026-05-07 05:53:02
l*g*t*r*p*a*h*i*t*s.fi (WP 6.9.4) F 2026-05-07 05:45:53
c*n*u*u*.no D 2026-05-07 04:52:29
i*e*s*j*w*l*y.com F 2026-05-07 03:46:42
v*n*a*a*y*e.no (WP 6.9.4) F 2026-05-07 01:35:24
v*l*a*o*t*t.no (WP 6.9.4) F 2026-05-07 01:10:43
l*g*r*u*i*.eu (WP 6.9.4) F 2026-05-07 00:18:01
l*g*r*m*i*e*.com D 2026-05-06 23:55:55
n*w*a*e*i*e.no (WP 6.7.2) F 2026-05-06 23:48:23
t*d*p*r*s*i*k*.no (WP 6.9.4) F 2026-05-06 22:46:53
k*b*a*a*.no F 2026-05-06 21:03:38
s*l*i*g.no (WP 6.9.4) D 2026-05-06 20:11:23
k*i*s*i*t*r*s*-*u*e*m.no D 2026-05-06 20:08:21
k*a*t*l*.no F 2026-05-06 19:46:47
r*d*o*a*e*.no (WP 6.5.2) F 2026-05-06 19:38:50
k*s*g*a*s.org (WP 6.9.4) D 2026-05-06 19:14:33
k*n*t*a*e*e*.pl F 2026-05-06 18:39:23
k*n*t*a*e*e*.fi F 2026-05-06 18:39:23
k*n*t*a*e*e*.nl F 2026-05-06 18:39:23
k*n*t*a*e*.de D 2026-05-06 18:39:23
k*n*t*a*e*e*.art F 2026-05-06 18:39:23
k*n*t*a*e*e*.dk D 2026-05-06 18:39:23
k*n*t*a*r*t.se D 2026-05-06 18:39:23
k*m*u*e*k*g.net (WP 6.9.4) F 2026-05-06 18:23:35
v*r*n*e*b*y*g*.no (WP 6.9.4) F 2026-05-06 18:13:22
g*m*c*k*y*t*r*.com (WP 6.9.4) F 2026-05-06 18:06:41
i*d*i*r*a*i*n*.com (WP 6.9.4) F 2026-05-06 17:50:48
v*b*o*n*a*d.com (WP 6.9.4) F 2026-05-06 17:47:07
v*m*s*e*.com (WP 6.9.4) F 2026-05-06 17:11:05

Top 50 Plugins

Plugin Count
elementor 1,834,974
contact-form-7 1,805,395
elementor-pro 1,069,674
woocommerce 831,175
revslider 628,526
jetpack 473,249
js_composer 440,228
wp-rocket 341,005
essential-addons-for-elementor-lite 300,145
gravityforms 270,579
complianz-gdpr 262,997
cookie-law-info 236,572
instagram-feed 232,313
google-site-kit 226,154
sitepress-multilingual-cms 225,560
google-analytics-for-wordpress 217,459
header-footer-elementor 213,861
elementskit-lite 211,389
bluehost-wordpress-plugin 191,844
gutenberg 164,589
gutenberg-core 162,474
cookie-notice 155,603
litespeed-cache 135,239
the-events-calendar 134,880
wpforms-lite 131,470
gtranslate 130,461
astra-sites 121,039
popup-maker 118,166
woocommerce-payments 114,462
tablepress 112,366
coblocks 101,429
honeypot 99,514
astra-addon 96,982
duracelltomi-google-tag-manager 95,600
wp-smushit 95,268
all-in-one-seo-pack 94,836
LayerSlider 93,178
bb-plugin 91,997
megamenu 88,536
premium-addons-for-elementor 88,535
akismet 87,226
mailchimp-for-wp 85,188
cleantalk-spam-protect 85,035
woocommerce-gateway-stripe 84,457
ml-slider 82,764
borlabs-cookie 81,569
fusion-builder 81,119
wp-pagenavi 80,609
ewww-image-optimizer 80,505
formidable 79,254

Top 50 Themes

Theme Count
hello-elementor 627,686
Divi 519,455
astra 431,031
flatsome 140,279
Avada 126,551
generatepress 124,831
pub 111,883
oceanwp 85,062
kadence 80,297
enfold 73,148
salient 67,774
twentytwentyfour 59,833
h4 57,433
twentyseventeen 57,275
bb-theme 55,987
betheme 52,878
cocoon-master 52,403
blocksy 51,939
dt-the7 47,031
twentytwentyfive 44,923
neve 40,199
Avada-Child-Theme 38,272
sydney 37,893
woodmart 33,918
gox 33,881
bridge 33,424
twentytwentyone 32,668
lightning 31,833
twentytwenty 30,617
swell 28,847
Impreza 27,049
bricks 26,563
twentytwentythree 24,358
Newspaper 24,061
voxel 23,714
kubio 20,713
sinatra 20,411
twentytwentytwo 20,219
uncode 19,485
epik-redesign 19,279
twentysixteen 18,605
storefront 18,237
pro 18,053
Total 14,987
extendable 14,808
yith-wonder 14,114
hello-theme-child-master 13,652
themify-ultra 13,248
yootheme 13,220
hestia 13,119