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
n*m*r*l*g*n.no (WP 6.9.4) F 2026-05-20 23:33:47
f*i*o*t*d.no F 2026-05-20 22:31:14
x*-*d*n*b*-*u*.no (WP 6.9.4) F 2026-05-20 22:31:14
x*-*b*d*k*v*-*4*.no (WP 6.9.4) F 2026-05-20 22:28:31
b*d*f*y.no (WP 6.9.4) F 2026-05-20 21:51:58
n*r*i*c.no (WP 6.9.4) F 2026-05-20 21:30:08
k*r*a*r*i*e*i.com (WP 6.7.5) D 2026-05-20 20:34:59
f*i*u*t*b*a.no C 2026-05-20 20:01:26
j*v*t*u*g*.no F 2026-05-20 19:55:38
e*.c*n*t*u*t*n*m*n*h.no (WP 6.6.5) F 2026-05-20 18:58:51
o*s*n*a*t*r*e*.com D 2026-05-20 17:42:42
d*t*h*e*p*r*e.com A 2026-05-20 17:01:58
h*s*s*i.com (WP 6.9.4) F 2026-05-20 16:21:48
m*c*v*.no F 2026-05-20 16:05:10
t*o*.photography (WP 6.7.5) F 2026-05-20 16:05:10
r*v*k*c.no (WP 6.4.8) ⚠️ 🔓 F 2026-05-20 14:54:38
t*o*k*f*e*u*e*.no (WP 6.9.4) F 2026-05-20 14:49:24
o*e*s.no (WP 6.4.3) ⚠️ F 2026-05-20 14:24:33
b*a*k*r.no (WP 6.9.4) F 2026-05-20 14:19:27
b*-*s*o.no (WP 6.9.4) F 2026-05-20 14:19:27
b*l*l*e*t*o*.no (WP 6.9.4) F 2026-05-20 14:19:27
b*b*e*u*.no (WP 6.9.4) F 2026-05-20 14:19:27
t*r*c*n*e*.no (WP 6.9.4) F 2026-05-20 13:09:08
e*i*y*t*e.com (WP 6.9.4) F 2026-05-20 11:24:20
a*l*n*e*s*e*n*r.dk (WP 6.9.4) F 2026-05-20 08:44:51
p*o*f*l*e*.no (WP 6.4.8) ⚠️ C 2026-05-20 06:49:04
p*i*i*p*.no C 2026-05-20 04:19:05
o*a*m*r*a*t*.com (WP 6.4.8) ⚠️ F 2026-05-20 03:44:40
k*i*a*e*n*r.no F 2026-05-20 02:27:01
e*f*r*n*s*o*p*t*n*e.com (WP 6.9.4) F 2026-05-19 22:52:29
n*s*e*.no (WP 6.9.4) F 2026-05-19 19:52:55
n*b*v*r*e*n*r*e.no (WP 6.8.2) F 2026-05-19 19:25:43
f*e*r*k*t*d*u*t*n*.no (WP 6.9.4) F 2026-05-19 19:13:45
v*n*e*l*e*d.com (WP 6.9.4) F 2026-05-19 18:17:31
m*k*m*l*y.no (WP 6.9.4) F 2026-05-19 17:32:47
n*t*n*p*r*.no C 2026-05-19 16:53:51
h*u*e.a*t*p*d*s.cafe (WP 6.9.4) D 2026-05-19 16:07:11
s*r*e*.a*t*p*d*s.cafe (WP 6.9.4) D 2026-05-19 16:07:11
s*r*k*e*i*.no D 2026-05-19 15:22:42
s*i*u*s*f*r*n*n*.no (WP 6.9.4) F 2026-05-19 13:36:03
k*d*a*t*o*f*r*i*s.com D 2026-05-19 12:13:15
m*c*c*r*y.no F 2026-05-19 12:02:10
l*m*m*n*f*l*e*s.no (WP 6.9.4) F 2026-05-19 11:42:03
s*i*r*k*i*.no F 2026-05-19 11:16:12
n*b*h*r*.e*e*e*t*r.cloud (WP 6.9.4) F 2026-05-19 11:16:12
g*a*d*o*a.no (WP 6.8.5) F 2026-05-19 10:59:45
s*d*s*o*c*r*.com D 2026-05-19 07:49:14
r*p*u*e*m*a*l*a.com (WP 6.9.4) F 2026-05-19 07:03:16
m*i*k*m*r*a*i*m*.fi (WP 6.9.4) F 2026-05-19 05:33:56
v*u*e*k*r*p*a*t*r*l*n*k*.no (WP 6.9.4) F 2026-05-19 04:31:45
1*p*n*.nu A 2026-05-19 04:27:20
d*n*o*s*e*u*f*i*e*.no F 2026-05-19 03:29:29
h*p*n*t*h*p.no (WP 6.9.4) C 2026-05-19 01:07:48
d*k*t*n*r*a*.no F 2026-05-19 00:33:57
2*2*.f*o*e*l*k*m*r*t*o*.com (WP 6.8.5) C 2026-05-19 00:33:42
b*o*c*n*r*t*.com D 2026-05-19 00:29:02
e*m*.no (WP 6.9.4) F 2026-05-18 23:53:19
t*e*u*e*.com (WP 6.9.4) F 2026-05-18 23:29:52
b*n*l*n*o.com (WP 6.9.4) F 2026-05-18 20:44:19
b*n*-*a*d*.com (WP 6.9.4) F 2026-05-18 20:38:16
o*s*r*u*.no (WP 6.9.4) F 2026-05-18 20:13:13
s*i*e*l*d*.no (WP 6.9.4) D 2026-05-18 20:02:13
l*n*b*r*s.no (WP 6.9.4) F 2026-05-18 19:55:35
s*u*f*a*l*t.com (WP 6.9.4) D 2026-05-18 19:10:52
b*g*i*t*i*g.no (WP 6.9.4) F 2026-05-18 18:50:55
s*r*n*s*o*.no F 2026-05-18 18:21:29
m*o*b*l.no D 2026-05-18 15:33:14
k*f*e*o*s.com (WP 6.9.4) F 2026-05-18 13:20:25
l*l*e*e*t*r.no (WP 6.9.4) F 2026-05-18 13:14:04
o*d*r*o*c*e*e.no D 2026-05-18 12:25:19
b*t*n*b*l*r.no D 2026-05-18 12:25:19
p*m*.no D 2026-05-18 12:25:19
f*b*r*r*e*i*g.no F 2026-05-18 12:25:19
b*s*l*f*b*r.no D 2026-05-18 12:25:19
b*t*n*f*r*e.no D 2026-05-18 12:25:19
h*r*e*e*b*a*.no D 2026-05-18 12:25:19
a*r*t*i*g.no D 2026-05-18 12:25:19
j*s*.no D 2026-05-18 12:25:19
b*t*n*t*b*.no D 2026-05-18 12:25:19
p*m*e*i*e*.no D 2026-05-18 12:25:19
3*b*o*k.no D 2026-05-18 12:25:19
b*t*n*b*l.no D 2026-05-18 12:25:19
f*b*c*l*e*t.no D 2026-05-18 12:25:19
b*t*n*s*a*j*n.no D 2026-05-18 12:25:19
b*t*n*s*n*r*m.no D 2026-05-18 12:25:19
b*e*t*s.no D 2026-05-18 12:22:49
a*w*d*e*.com (WP 6.8.5) F 2026-05-18 10:17:53
f*o*e*t*u*k.no (WP 6.9.4) F 2026-05-18 10:10:38
v*t*n*a*k*n.no F 2026-05-18 09:18:01
t*a*e*i*g*g*m*.com (WP 6.9.4) F 2026-05-18 09:07:01
t*a*e*i*g*-*a*e.com (WP 6.9.4) F 2026-05-18 09:07:01
s*a*o*h*p*.no C 2026-05-18 08:51:55
s*y*k*s*e*i*l*s*e*.com F 2026-05-18 08:37:36
h*p*o*h*u*e.fi (WP 6.9.4) F 2026-05-18 06:22:40
b*y*n*f*a*o*.no (WP 6.9.4) F 2026-05-18 05:46:22
t*a*e*o.no (WP 6.9.4) F 2026-05-18 05:46:22
s*v*a*.no (WP 6.9.4) F 2026-05-18 05:46:22
d*v.s*e*g*n.no B 2026-05-18 04:28:04
p*r*a*e*.w*s*o*f*o*n*r*h.no D 2026-05-18 04:17:30
t*a*s*i.com (WP 6.9.4) F 2026-05-18 03:30:37

Top 50 Plugins

Plugin Count
elementor 1,819,196
contact-form-7 1,789,483
elementor-pro 1,060,662
woocommerce 824,782
revslider 623,770
jetpack 470,465
js_composer 436,870
wp-rocket 337,948
essential-addons-for-elementor-lite 297,183
gravityforms 269,158
complianz-gdpr 259,951
cookie-law-info 234,187
instagram-feed 230,506
google-site-kit 224,321
sitepress-multilingual-cms 223,618
google-analytics-for-wordpress 216,054
header-footer-elementor 212,182
elementskit-lite 209,363
bluehost-wordpress-plugin 191,408
gutenberg 163,525
gutenberg-core 160,943
cookie-notice 153,633
the-events-calendar 133,454
litespeed-cache 132,870
wpforms-lite 130,558
gtranslate 129,224
astra-sites 120,332
popup-maker 117,257
woocommerce-payments 113,813
tablepress 110,939
coblocks 100,525
honeypot 98,579
astra-addon 96,287
duracelltomi-google-tag-manager 94,758
wp-smushit 94,540
all-in-one-seo-pack 94,163
LayerSlider 92,505
bb-plugin 91,548
premium-addons-for-elementor 87,784
megamenu 87,690
akismet 86,772
mailchimp-for-wp 84,606
cleantalk-spam-protect 84,528
woocommerce-gateway-stripe 83,875
ml-slider 81,965
borlabs-cookie 80,562
fusion-builder 80,452
ewww-image-optimizer 79,824
wp-pagenavi 79,811
formidable 78,763

Top 50 Themes

Theme Count
hello-elementor 622,154
Divi 515,376
astra 427,781
flatsome 136,821
Avada 125,534
generatepress 122,038
pub 110,907
oceanwp 84,326
kadence 79,509
enfold 72,549
salient 67,305
twentytwentyfour 59,420
h4 56,888
twentyseventeen 56,800
bb-theme 55,720
betheme 52,419
cocoon-master 52,256
blocksy 51,289
dt-the7 46,628
twentytwentyfive 44,378
neve 39,825
Avada-Child-Theme 37,985
sydney 35,715
gox 33,650
woodmart 33,613
bridge 33,188
twentytwentyone 32,430
lightning 31,653
twentytwenty 30,348
swell 28,740
Impreza 26,771
bricks 26,340
twentytwentythree 24,219
Newspaper 23,785
voxel 23,104
twentytwentytwo 20,100
kubio 19,580
sinatra 19,425
uncode 19,303
epik-redesign 19,278
twentysixteen 18,417
storefront 18,092
pro 17,983
Total 14,866
extendable 14,714
yith-wonder 14,087
hello-theme-child-master 13,503
themify-ultra 13,124
yootheme 13,090
factory-templates-4 13,019