• Resolved Kim

    (@kimikaze)


    We have been using Vipps login for about a week on a new site. The specific site is a site where most users will come back each day. The initial feedback from the users has been that they don’t like having to login every day, and they feel it is too time consuming and unnecessary having to do this. Is there a way to activate the “remember me” functionality in the auth cookie, and if not could this be added as a setting or filter?

Viewing 1 replies (of 1 total)
  • Plugin Author Iver Odin Kvello

    (@iverok)

    The version 1.3.1, just released, adds the filter ‘login_with_vipps_remember_user‘ which can be used like this:

    add_filter('login_with_vipps_remember_user', function ($remember, $user, $data) {
    return true;
    }, 10, 3);

    You can do this for only certain users etc if required.

Viewing 1 replies (of 1 total)

The topic ‘How to activate “remember user” functionality?’ is closed to new replies.