Hi @presbycan,
By default our plugin only allows for 2 days, then logs out the devices. In our upcoming release, it will support the ‘Remember Me’ function of WordPress and honor the default 14 days. By default, WordPress will keep devices logged in for 14 days if the rememberme checkbox was checked.
To increase this time so that your devices can stay logged in longer, you’ll need to add a new filter for auth_cookie_expiration
.
An example of increasing 14 days to 30 days would be like so:
add_filter('auth_cookie_expiration', function() { return MONTH_IN_SECONDS; });
I hope that helps!
Let me know if you have any further questions.
Kind regards,
Sully
-
This reply was modified 9 months, 1 week ago by SS88 LLC.