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

Plugin: woo-vipps (Used by 1,110 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
s*l*e*h*d*l*i*.no (WP 7.0.2) F 2026-07-28 12:28:59
c*p*a*n*i*r*.com (WP 7.0.2) F 2026-07-28 11:34:51
c*p*a*n*i*r.com (WP 7.0.2) F 2026-07-28 11:34:51
l*g*a*e.dk (WP 7.0.2) 🔓 F 2026-07-28 10:40:03
t*o*e.com F 2026-07-28 08:01:55
p*r*a*r*s*.no (WP 6.9) F 2026-07-28 05:33:25
n*w*m*g*s.com (WP 7.0.2) 👤 F 2026-07-28 00:30:34
n*w*m*c*.com (WP 7.0.2) 👤 F 2026-07-28 00:30:34
g*e*h*d*m*e*.com (WP 7.0.2) 👤 F 2026-07-27 22:59:27
b*r*e*h*d*l*i*k*i*i*k.no (WP 7.0.2) F 2026-07-27 21:33:24
n*r*a*d*c*s.no (WP 7.0.2) B 2026-07-27 20:51:10
b*c*y*r*u*t*a.no (WP 6.8.6) C 2026-07-27 20:44:53
a*p*n*a*e*.fi (WP 7.0.2) 👤 F 2026-07-27 18:54:13
v*s*o*w*b*h*p.com F 2026-07-27 18:00:48
f*o*k*a*n.com (WP 7.0.2) F 2026-07-27 16:49:25
b*r*e*o*n*u*e*.no 👤 D 2026-07-27 16:28:02
b*k*a*i.no D 2026-07-27 15:09:30
t*u*o.com (WP 7.0.2) F 2026-07-27 13:59:32
k*o*k*n*i*.no F 2026-07-27 13:32:41
t*n*e*e*g*f*b*r.no (WP 7.0.2) B 2026-07-27 13:32:41
k*n*d*e*a*d.com 👤 F 2026-07-27 12:14:47
p*i*a*f*y.no F 2026-07-27 10:54:14
n*t*h*n*e*s*r*p*e*.com C 2026-07-27 09:10:28
s*f*d*i*e.no F 2026-07-27 09:02:29
r*d*n.no (WP 6.8.6) 👤 F 2026-07-27 03:40:43
r*t*l*i*a.com D 2026-07-27 02:50:30
n*s*a*o*b*n.com D 2026-07-27 00:26:46
d*n*b*�*.no (WP 6.9.5) F 2026-07-26 22:11:07
j*r*s*f*r*n*n*e*.no (WP 7.0.2) F 2026-07-26 21:53:40
n*r*r*m.com 👤 F 2026-07-26 21:31:56
d*v*i*i*d*.no F 2026-07-26 20:37:31
a*n*t*e*r*g*a*d.no D 2026-07-26 19:59:22
v*n*e*h*g*r*o*l*n*e*.no B 2026-07-26 18:33:28
f*a*g*t*n*e*.com (WP 7.0.2) F 2026-07-26 17:33:49
f*a*g*t*n*.com (WP 7.0.2) F 2026-07-26 17:33:49
r*n*e*s*i*h*o*f*e.com F 2026-07-26 15:59:49
f*o*d*n*.com (WP 7.0.2) 👤 F 2026-07-26 15:47:06
f*e*l*i*.com C 2026-07-26 15:34:11
f*e*l*e*e*s*o*.com D 2026-07-26 15:34:11
i*t*r*a*i*n*l*a*h*d*l*v*r*.com (WP 7.0.2) F 2026-07-26 15:03:02
i*t*r*a*i*n*l*a*h*d*l*v*r*e*.com (WP 7.0.2) F 2026-07-26 15:03:02
k*d*e*e*.com (WP 7.0.2) 👤 F 2026-07-26 14:15:41
r*n*r*a*o*e*.com C 2026-07-26 14:04:39
r*n*n*r*l*x.com 👤 F 2026-07-26 13:58:14
c*m*b*l*e*d*l*n.com (WP 6.9.5) 👤 F 2026-07-26 13:00:17
k*o*s*o*e.no (WP 6.9.5) F 2026-07-26 12:48:37
s*o*b*r.no (WP 7.0.2) 👤 F 2026-07-26 12:48:37
x*-*b*t*n*s*r*t*n*-*q*.no D 2026-07-26 12:39:33
b*t*n*n*t*.no D 2026-07-26 12:39:33
a*r*t*i*g*m*s*e.no D 2026-07-26 12:39:33
a*f*s*o*i.fi F 2026-07-26 11:37:30
t*e*t*e*p*r*e*c*.com (WP 7.0.2) F 2026-07-26 09:14:31
l*g*r*u*i*.com (WP 7.0.2) F 2026-07-26 09:08:12
p*l*o*o*t*e*o.com (WP 7.0.2) F 2026-07-26 07:50:19
y*h*n*.no (WP 6.9.5) F 2026-07-26 06:59:41
p*l*r*m*o*k*n*.com D 2026-07-26 06:32:48
p*l*g*i*b*o*i*g.com D 2026-07-26 06:19:41
s*r*k*m*r*e*.com C 2026-07-26 06:03:27
v*r*e*o*e*i*g*n.no F 2026-07-26 04:50:30
k*e*t*v*a*e*i*g.no 👤 F 2026-07-26 04:49:28
g*e*t*e*s*o*t.no C 2026-07-26 02:25:55
s*i*o*.no (WP 7.0.2) 👤 F 2026-07-26 02:13:43
x*-*s*l*e*-*y*.no (WP 7.0.2) F 2026-07-26 01:09:01
u*m*k*r*i*n.no 👤 F 2026-07-26 01:04:15
s*r*k*e*u*p*.com (WP 6.9.5) 👤 F 2026-07-26 00:29:22
s*r*k*e*u*.com F 2026-07-26 00:29:22
d*l*k*p*.no (WP 6.4.8) ⚠️ 👤 F 2026-07-25 22:41:07
h*n*a*.no (WP 7.0.2) D 2026-07-25 22:04:40
v*m*l*r.com (WP 7.0.2) F 2026-07-25 19:50:37
k*y*t*l*f*t*.no (WP 7.0.2) F 2026-07-25 19:46:58
t*e*3*o*r*e*f*c*.com (WP 7.0.2) F 2026-07-25 19:38:41
n*r*a*a*t*o.no (WP 7.0.2) 👤 F 2026-07-25 19:32:12
w*4*o*.fi (WP 6.9.5) 👤 F 2026-07-25 19:05:30
h*l*a*r.dk F 2026-07-25 18:48:49
n*t*h*n*e*s*r*p*e*.no C 2026-07-25 17:27:50
t*e*k*m*u*h*.com 👤 F 2026-07-25 14:41:29
h*g*g*e*e.no (WP 7.0.2) 🔓 👤 D 2026-07-25 08:02:10
r*i*e*i*k.no (WP 7.0.2) F 2026-07-25 07:48:14
a*l*h*t.dk (WP 6.8.1) F 2026-07-25 05:48:33
v*i*k*v*o*r*a*o.com F 2026-07-25 04:37:45
m*t*e*d*h*i*.com (WP 7.0.2) F 2026-07-25 04:29:21
l*v*r*g*.no (WP 7.0.2) 👤 C 2026-07-25 02:14:40
s*l*x*e*t*n.no F 2026-07-25 01:08:52
s*o*a*e*n*s*e*v*s.com (WP 7.0.2) F 2026-07-25 00:16:21
v*e*n*m*o*s*s*s*i.com 👤 D 2026-07-24 23:54:38
s*i*s*c*e*.no (WP 7.0.2) 👤 F 2026-07-24 23:43:36
o*y*s.no 👤 C 2026-07-24 23:07:32
h*g*b*n*e*.no (WP 7.0.2) 👤 F 2026-07-24 22:10:06
w*n*e*r*n.no (WP 6.8.6) C 2026-07-24 20:40:57
s*r*k*e*u*s*n*e*j*r*.no 👤 F 2026-07-24 18:18:39
f*y*.run (WP 7.0.2) 👤 C 2026-07-24 18:16:06
i*t*p*k*c*a.no (WP 6.9.5) 👤 A 2026-07-24 18:02:55
d*n*e*i*m*o*t.no D 2026-07-24 16:24:59
r*v*y*e*e.com (WP 7.0.2) F 2026-07-24 15:31:02
5*8*.no (WP 7.0.2) 👤 F 2026-07-24 13:47:29
g*i*o*p*r*.no C 2026-07-24 13:20:55
s*m*o*s*e*a*e*.no D 2026-07-24 12:32:57
d*t*k*u*b*u*.com (WP 7.0.2) F 2026-07-24 10:28:36
m*s*n*e*i*.com F 2026-07-24 09:32:26
i*t*g*a*h*c*e*h*m*e*l*n*a.com (WP 7.0.2) D 2026-07-24 09:25:28

Top 50 Plugins

Plugin Count
elementor 1,780,332
contact-form-7 1,761,643
elementor-pro 1,056,820
woocommerce 818,776
revslider 612,633
jetpack 458,530
js_composer 422,984
wp-rocket 341,876
essential-addons-for-elementor-lite 266,765
complianz-gdpr 259,646
gravityforms 258,161
google-site-kit 232,552
cookie-law-info 230,233
instagram-feed 226,206
sitepress-multilingual-cms 211,819
header-footer-elementor 208,625
google-analytics-for-wordpress 207,114
bluehost-wordpress-plugin 192,856
elementskit-lite 181,864
gutenberg 167,592
cookie-notice 150,197
litespeed-cache 143,612
gtranslate 125,988
wpforms-lite 125,273
the-events-calendar 123,092
gutenberg-core 122,997
astra-sites 114,526
popup-maker 110,539
woocommerce-payments 110,325
tablepress 102,388
honeypot 98,272
astra-addon 94,440
coblocks 92,747
wp-smushit 91,567
duracelltomi-google-tag-manager 90,773
layerslider 90,048
all-in-one-seo-pack 89,708
bb-plugin 87,420
akismet 85,434
premium-addons-for-elementor 85,009
cleantalk-spam-protect 83,233
ml-slider 83,048
mailchimp-for-wp 82,495
megamenu 80,748
woocommerce-gateway-stripe 80,023
jet-engine 77,896
fusion-builder 77,691
ewww-image-optimizer 76,778
smart-slider-3 76,696
wp-pagenavi 76,624

Top 50 Themes

Theme Count
hello-elementor 623,749
Divi 499,945
astra 417,467
flatsome 137,507
Avada 122,020
generatepress 115,394
pub 85,688
oceanwp 81,186
kadence 79,284
enfold 69,387
salient 65,646
twentyseventeen 54,578
bb-theme 53,624
betheme 52,617
twentytwentyfour 52,381
blocksy 51,225
cocoon-master 49,280
dt-the7 45,668
twentytwentyfive 44,900
h4 42,746
woodmart 41,862
neve 38,404
Avada-Child-Theme 37,071
gox 36,283
bridge 31,655
twentytwentyone 30,482
lightning 29,891
twentytwenty 28,889
swell 27,934
bricks 26,543
Impreza 26,195
Newspaper 24,353
twentytwentythree 22,202
epik-redesign 19,222
twentytwentytwo 18,917
uncode 18,672
twentysixteen 17,669
pro 17,627
sydney 16,679
storefront 16,445
Total 14,542
hello-theme-child-master 14,047
factory-templates-4 13,726
extendable 13,073
themify-ultra 13,026
hestia 12,679
yootheme 12,627
yith-wonder 12,369
porto 12,045
twentyfifteen 11,873