Login with Vipps and MobilePay for WordPress Plugin Directory
Login with Vipps and MobilePay is the #100 ranked login app on WordPress, with a 5.0 average rating from 4 reviews, as of Aug 31, 2026.
Login with Vipps and MobilePay is a WordPress Plugin Directory app by WP Hosting AS. With a rating of 5.0★ from 4 reviews, it currently ranks #100 in the Login category.
AppRanks data: Login with Vipps and MobilePay ranks #100 in Login on WordPress Plugin Directory, placing it in the top 17% of that category.
AppRanks verdict
Generated from live marketplace data — refreshed daily
Login with Vipps and MobilePay is a category-leading WordPress app with a limited review volume. It is listed in the Login category on WordPress Plugin Directory, which AppRanks treats as the canonical taxonomy node for ranking and competitor comparison. 4 reviews put it in the early-traction tier — useful for early-stage stores willing to be on the leading edge. Early-traction review counts are sensitive to single launch periods or feature events, so a 30-day re-check before bigger commitments often resolves whether the trend is sustained. Paid-only pricing means evaluating fit on the marketplace listing or via the developer's documentation before installing. AppRanks tracks rating, review count, pricing tier, and category position daily — the figures on this page reflect the most recent scrape from the canonical WordPress Plugin Directory listing.
Pros
- +High average rating (5.0★) signals consistent merchant satisfaction
- +Published by WP Hosting AS — established developer track record
Cons
- −Limited review base (4) — ratings can shift significantly with new feedback
Looking to switch from Login with Vipps and MobilePay?
See Login with Vipps and MobilePay's alternatives ranked by audit score, rating, and review velocity.
How Login with Vipps and MobilePay works
Show full descriptionShow less
Login with Vipps and MobilePay offers super-easy registration and login from the leading smart-payment app in Norway with more than 4.2 million users. MobilePay is used by more than 75 % of Denmark’s population (4.4 million users), and more than 36 % of Finland’s population (2.6 million users). There is no easier login. No more usernames or passwords.
The users need only remember their phone number. They are also able to provide information that websites often require, like e-mail, phone numbers and addresses, from their Vipps MobilePay profile with no tedious data entry.
The plugin is easy to modify for your own applications.
This solution is great for all websites that wants to:
Get more logged-in users
All Vipps and MobilePay-users can create a profile on your website with just one click, and can be logged in directly on the next visit
You can modify content, messaging and retrieve stored shopping carts for the user
Your customers can see order histories and potentially register product returns
More logged-in users gives you better overview and better conversion rates
Get started
If you are a user of Vipps and MobilePay for E-Commerce, you can add Login with Vipps and MobilePay to your account on https://portal.vippsmobilepay.com and find your API-keys there – see “Installation” for more details.
If you do not have an account with Vipps Mobilepay, you can order this here: https://vippsmobilepay.com/no/priser/logg-inn . When the order has been processed, you will be notified and you will be able to retrieve the API-keys on https://portal.vippsmobilepay.com . Then see “Installation” for the next steps.
Requirements
WordPress version 4.9 or above
PHP version 7.0 or above
Your website must have an SSL certificate and be available through HTTPS
OpenSSL must be configured for your PHP installation
For WooCommerce, the version requirement is 3.3.4 or above
The port 443 must be open for outward traffic on your servers firewall
Feature Highlights Fully integrated with WooCommerce Allows login and registration on your account pages, cart, checkout and via shortcodes. Addresses automatically synchronized with Vipps MobilePay on login.
User can register with one click Login with Vipps and MobilePay is the easiest way to create a new account. The user can easily share high-quality data from the user’s Vipps profile with the site owner. Available information includes name, email, address, phone number, and birth date. The identity of all Vipps users is verified using BankID, Norway’s leading electronic ID, so rest assured that these are real people with correct name and information. (Please note: Standard WordPress does not register information other than name and email, so apart from WooCommerce, you will need to write code to use this information for your particular application.)
Link existing account Already registered users can link their current accounts when signing in with Vipps or from their account page. Users can choose to update their address information from Vipps MobilePay.
Customizable for your application You can use the framework of this plugin to implement other solutions that require verified users, without actually requiring login. For example, you might create a system for having users sign their comments with Vipps MobilePay so as to avoid spam issues.
Shortcodes
[login-with-vipps application="wordpress"] – This will print out a Login with Vipps button that will log you into the given application, which by default can be either WordPress or WooCommerce. Uses this web component and supports the parameters: https://developer.vippsmobilepay.com/docs/knowledge-base/buttons/.
[continue-with-vipps application="wordpress"] – This is the same, except for a different default text verb.
Customizing the Plugin To use ‘Continue with Vipps/MobilePay’ in your application, there are two levels of customizations available, except for a mass of filters and hooks.
Adding another ‘application’ to log into Logging into basic WordPress and into an application like WooCommerce is different in the details, especially with regards to
* what page to redirect to (the profile page, or your account page, or maybe the checkout page),
* handling of user data (for WooCommerce you want to update the users’ address)
* and for error handling.
For your own application, you may well have other actions you want done after new user registration, logins etc. We aim to provide support for as many applications as possible in time, but to create your own, these are the main steps:
Define your application with a name. It should be a simple slug, like ‘wordpress’ or ‘woocommerce’
Create your login button, and make it call the supplied Javascript function “login_with_vipps” with your application name as argument.
To customize, you can now modify several filters and hooks, the most important of which would be:
‘continue_with_vipps_error_your application_login_redirect’. This takes and returns an error-page redirect, the error string, and the login session data as an array. You can here return your own error page.
‘continue_with_vipps_before_your application_login_redirect’. This takes your logged-in user and a session (which can be called as an array) and is called right before the user is redirected. This would be a good place to add a filter to ‘login_redirect’ for instance.
Filter ‘continue_with_vipps_your application_users_can_register’. Takes a truth value, an array of userinfo from Vipps MobilePay and a session, and should return true only if you allow the user to register
Filter ‘continue_with_vipps_your application_create_userdata’. For newly registered users, takes an array to be passed to wp_update_user, an array of userinfo from Vipps MobilePay, and a session. You can here add your extra meta fields
Filter ‘continue_with_vipps_your application_allow_login’. Takes a truth value, a user object, userinfo from Vipps MobilePay and a session, and returns true only if the user is allowed to log in
Adding another ‘action’ apart from logging in You may want to do other things than logging in with the users’ confirmed Vipps MobilePay identity, and this plugin absolutely allows this. This might be submisssions of comments, reviews and so forth without requiring logins, or even just as a convenient way of letting users input their address.
These are the main steps:
Define your own action, like ‘submitaddress’.
Create your button. The handler should call the static method ContinueWithVipps::getAuthRedirect($action) (you can also provide an array of sessiondata which will be available in your handlers, and restrict the scope of the data to retrieve from Vipps MobilePay. The return value is an URL to which you should redirect your user.
Create your error handler. This should be hooked to ‘continue_with_vipps_error_your action‘. It will receive an error string, a description of the error, sometimes an error hint, and the contents of your session (which will no longer be active). You will need to redirect to your error page here, and show your user the error. The redirect is important, you should not output content in this action.
Create your succes handler. This should be hooked to ‘continue_with_vipps_your action‘. It will receive an array of user information from Vipps MobilePay, and a live session. This handler too should end with a redirect to your success page.
The rest is a simple matter of programming.
Category rankings
As of Sep 5, 2026- Login#100of 607Top 17%
See 90-day rank history for each category
Track daily rank changes, category shifts, and position volatility.
Competitors & alternatives
Login with Vipps and MobilePay doesn't have curated competitor matchups yet. Other tracked login apps on WordPress:
Where Login with Vipps and MobilePay stands in the Login category
Login with Vipps and MobilePay ranks #100 of 607 apps in the Login category, placing it in the top 17% of the listing.
Frequently asked questions
What is Login with Vipps and MobilePay?
Login with Vipps and MobilePay is an app for WordPress. It currently holds a 5.0-star rating from 4 merchant reviews, and AppRanks has been tracking its public marketplace data on the refresh cadence published in our methodology. It is listed under the Login category on AppRanks, where you can see its current category position, review-velocity trend, and how it compares against the top alternatives in the same space. Developed by WP Hosting AS.
Who uses Login with Vipps and MobilePay?
Currently around 800 active stores have installed Login with Vipps and MobilePay. Its review base is still building, which usually maps to early-stage merchants and stores piloting a new workflow. It is part of the Login category on WordPress.
Where does Login with Vipps and MobilePay rank on WordPress?
Login with Vipps and MobilePay currently sits at position #100 in the Login category on WordPress. That places it in the top 16% of 607 apps tracked in the same category. Category positions are read from the live marketplace ranking and refresh on each scrape, so the number you see here reflects the most recent crawl rather than a long-running average.