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

Plugin: woo-vipps (Used by 1,109 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*a*f*.no F Jul 9, 2026
r*l*a*e.no D Jul 9, 2026
n*t*a*i*f*i.com (WP 6.9.4) F Jul 9, 2026
b*t*n*e*t*u*.com D Jul 9, 2026
b*t*n*s*n*r*m.com D Jul 9, 2026
b*t*n*2*.com D Jul 9, 2026
b*t*n*a*b*d.com D Jul 9, 2026
n*s*e*a*v*k*l*e*t*v*l.com (WP 7.0) D Jul 9, 2026
n*r*k*o*.no (WP 6.8.5) F Jul 9, 2026
m*l*o*n*r*a*.com (WP 7.0) D Jul 9, 2026
o*c*r.no F Jul 9, 2026
g*m*u*i*k*n.com (WP 7.0) F Jul 9, 2026
g*l*e*r*g*.com D Jul 9, 2026
7*i*i.com F Jul 9, 2026
e*e*g*o*b*l*n*e.no F Jul 9, 2026
b*o*y*a*i*k.no F Jul 9, 2026
s*i*o*.fi (WP 6.2.9) D Jul 9, 2026
b*r*n*b*y*n*.no (WP 6.9.4) F Jul 9, 2026
k*n*o*k*n*u*t.no (WP 7.0) B Jul 9, 2026
b*e*t*s.com B Jul 9, 2026
j*g*r*e*v*c*.com (WP 7.0) F Jul 8, 2026
s*m*e*f*r*f*i*a.no (WP 7.0) F Jul 8, 2026
i*o*e*a*c*n*.no (WP 7.0) F Jul 8, 2026
d*n*i*y.no (WP 7.0) F Jul 8, 2026
a*t*o*x.shop (WP 6.9) F Jul 8, 2026
u*d*r*i*.no D Jul 8, 2026
j*b*r*f*o*d.com F Jul 8, 2026
r*n*e*s*i*h*o*f*e.no F Jul 8, 2026
r*n*r*a*o*e*.no C Jul 8, 2026
g*r*i*h.com F Jul 8, 2026
b*o*s*f*o*s*i*u*n*s*.com (WP 7.0) F Jul 8, 2026
b*o*o*c*n*c*o*s*e*s.com (WP 7.0) F Jul 8, 2026
r*v*y*e*e.no (WP 7.0) F Jul 8, 2026
g*u*e*o*m*l*e*r*.com F Jul 8, 2026
t*n*.com (WP 6.9.4) F Jul 8, 2026
r*r*s*a*p*n*.no (WP 7.0) F Jul 8, 2026
r*b*r*o*o*s*.no (WP 6.8.3) F Jul 8, 2026
t*u*d*g*l*.no (WP 6.9.4) F Jul 8, 2026
n*n*a*s*c*l*a*e.com (WP 6.8.5) F Jul 8, 2026
p*n*e*f*r*a*.no (WP 5.9.13) F Jul 8, 2026
g*l*s*e*c*r*s*e*s*n.com F Jul 8, 2026
g*l*b*r*b*s*a*l*k*e*.com (WP 7.0) F Jul 8, 2026
k*n*o*.no (WP 7.0) F Jul 8, 2026
l*n*e*u*d.no (WP 7.0) F Jul 8, 2026
y*m*h*s*a*a*g*r.no (WP 6.4.8) F Jul 8, 2026
m*g*r*g*.no (WP 7.0) F Jul 8, 2026
f*r*e*o*o*s*o*t.no (WP 6.9.4) F Jul 8, 2026
u*l*g*r*.no (WP 6.9.4) B Jul 8, 2026
f*k*s*t*.no (WP 7.0) F Jul 8, 2026
h*g*i.no (WP 6.9.4) F Jul 8, 2026
f*n*e*i*n.fi F Jul 8, 2026
p*s*k*f*e*a*.no (WP 6.8.5) F Jul 8, 2026
e*h*l*b*a*e*t*.com (WP 7.0) D Jul 8, 2026
p*s*e*e*n*k*.no (WP 7.0) D Jul 8, 2026
p*s*k*f*e*a*.com (WP 6.8.5) F Jul 8, 2026
p*s*e*e*n*k*.com (WP 7.0) D Jul 8, 2026
l*l*e*g*n*l*e.com F Jul 7, 2026
l*l*e*o*t*.com (WP 6.9.4) F Jul 7, 2026
l*l*e*o*l.com F Jul 7, 2026
g*o*a*f*e*g*e*t.com (WP 7.0) F Jul 7, 2026
g*a*p*.no (WP 6.8.5) F Jul 7, 2026
p*u*s*o*i*t*r*o*.no (WP 7.0) F Jul 7, 2026
k*i*i*k*s*e*i*k.no (WP 7.0) D Jul 7, 2026
n*l*o*m*5.dk F Jul 7, 2026
j*h*n*r*i*e*s*a*i*.fi (WP 6.9.4) B Jul 7, 2026
s*o*a*b*k.no (WP 7.0) D Jul 7, 2026
p*o*a*c.no (WP 7.0) F Jul 7, 2026
g*u*e.com (WP 7.0) D Jul 7, 2026
c*y*2*.no F Jul 7, 2026
n*s*i*.no (WP 7.0) F Jul 7, 2026
k*t*r*n*a*p*a*.no B Jul 7, 2026
g*g*a.no F Jul 7, 2026
3*l*n*s*a*.no (WP 7.0) F Jul 7, 2026
v*n*r*s*o*n.no (WP 7.0) F Jul 7, 2026
3*k*y*t*l*f*t*.com (WP 7.0) F Jul 7, 2026
3*k*y*t*l*.com (WP 7.0) F Jul 7, 2026
3*g*a*s*o*o.com (WP 7.0) F Jul 7, 2026
3*f*t*k*y*t*l*.com (WP 7.0) F Jul 7, 2026
e*r*p*a*a*r*i*e*.no (WP 7.0) F Jul 7, 2026
3*c*y*t*l*h*t*.com (WP 7.0) F Jul 7, 2026
v*d*o*i*k.dk F Jul 7, 2026
a*s*e*e*s*n.com (WP 7.0) F Jul 7, 2026
c*r*e*o.com (WP 6.9.4) F Jul 7, 2026
l*e*e*.no (WP 5.4.19) F Jul 7, 2026
e*i*a*a*l*.com F Jul 7, 2026
k*s*p*i.fi F Jul 7, 2026
g*u*e*l*n*k*e*.com D Jul 7, 2026
s*k.no F Jul 6, 2026
g*s*i*l*s*o*k*.com (WP 7.0) D Jul 6, 2026
s*k*e*l*k*e.com (WP 7.0) D Jul 6, 2026
s*a*4.no (WP 6.9.4) F Jul 6, 2026
s*i*o*.com (WP 6.2.9) D Jul 6, 2026
t*o*l*o*d.no (WP 7.0) F Jul 6, 2026
o*d*a*b*b*.no C Jul 6, 2026
c*i*k*t*o*b*n*e*.no D Jul 6, 2026
b*n*i*v*s*r*.com F Jul 6, 2026
a*m*k*i*i*k*n.no (WP 7.0) F Jul 6, 2026
m*s*e*g*l*.no D Jul 6, 2026
d*r*b*t*k*o*l*n*.no (WP 6.9.4) F Jul 6, 2026
n*r*e*a*p.no (WP 7.0) F Jul 6, 2026

Top 50 Plugins

Plugin Count
elementor 1,776,840
contact-form-7 1,758,478
elementor-pro 1,055,074
woocommerce 817,523
revslider 611,279
jetpack 457,533
js_composer 421,938
wp-rocket 341,667
essential-addons-for-elementor-lite 266,173
complianz-gdpr 259,008
gravityforms 257,969
google-site-kit 232,386
cookie-law-info 229,699
instagram-feed 225,821
sitepress-multilingual-cms 211,333
header-footer-elementor 208,143
google-analytics-for-wordpress 206,707
bluehost-wordpress-plugin 192,722
elementskit-lite 181,340
gutenberg 167,440
cookie-notice 149,808
litespeed-cache 143,617
gtranslate 125,686
wpforms-lite 124,882
the-events-calendar 122,872
gutenberg-core 118,836
astra-sites 114,110
popup-maker 110,286
woocommerce-payments 110,090
tablepress 102,271
honeypot 98,128
astra-addon 94,242
wp-smushit 91,393
coblocks 91,360
duracelltomi-google-tag-manager 90,662
layerslider 89,815
all-in-one-seo-pack 89,546
bb-plugin 87,277
akismet 85,312
premium-addons-for-elementor 84,794
cleantalk-spam-protect 83,108
ml-slider 83,006
mailchimp-for-wp 82,301
megamenu 80,581
woocommerce-gateway-stripe 79,920
jet-engine 77,827
fusion-builder 77,530
ewww-image-optimizer 76,707
wp-pagenavi 76,574
smart-slider-3 76,516

Top 50 Themes

Theme Count
hello-elementor 622,854
Divi 498,842
astra 416,322
flatsome 137,650
Avada 121,751
generatepress 115,146
pub 82,875
oceanwp 80,967
kadence 79,065
enfold 69,212
salient 65,526
twentyseventeen 54,508
bb-theme 53,547
betheme 52,521
twentytwentyfour 52,277
blocksy 51,124
cocoon-master 49,306
dt-the7 45,611
twentytwentyfive 44,890
woodmart 42,031
h4 41,331
neve 38,332
Avada-Child-Theme 37,020
gox 36,279
bridge 31,570
twentytwentyone 30,405
lightning 29,914
twentytwenty 28,851
swell 27,943
bricks 26,539
Impreza 26,135
Newspaper 24,300
twentytwentythree 22,160
epik-redesign 19,218
twentytwentytwo 18,866
uncode 18,639
twentysixteen 17,652
pro 17,630
sydney 16,648
storefront 16,402
Total 14,495
hello-theme-child-master 14,034
factory-templates-4 13,726
themify-ultra 13,004
extendable 12,960
hestia 12,657
yootheme 12,597
yith-wonder 12,316
porto 12,027
twentyfifteen 11,829