by Joel James
4.9 (109 reviews)
Loggedin - Limit Concurrent Sessions
Lightweight plugin that limits an account to a specific number of concurrent logins.
Compatible with WP 6.9
v2.0.4
Current Version v2.0.4
Updated 2 weeks ago
Last Update on 02 Jan, 2026
Synced 10 hours ago
Last Synced on
Rank
#2,535
—
No change
Active Installs
8K+
-8.1%
KW Avg Position
76
—
No change
Downloads
112.9K
+58 today
Support Resolved
100%
—
No change
Rating
98%
Review 4.9 out of 5
4.9
(109 reviews)
Next Milestone 9K
8K+
9K+
56
Ranks to Climb
-
Growth Needed
8,000,000
Active Installs
Pro
Unlock Exact Install Count
See the precise estimated active installs for this plugin, calculated from real-time ranking data.
- Exact install estimates within tiers
- Track install growth over time
- Milestone progress predictions
Need 322 more installs to reach 9K+
Rank Changes
Current
#2,535
Change
Best
#
Downloads Growth
Downloads
Growth
Peak
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
4.9
109 reviews
Overall
98%
5
104
(95%)
4
2
(2%)
3
0
(0%)
2
2
(2%)
1
1
(1%)
Tracked Keywords
Showing 2 of 2Unlock Keyword Analytics
Track keyword rankings, search positions, and discover new ranking opportunities with a Pro subscription.
- Full keyword position tracking
- Historical ranking data
- Competitor keyword analysis
Support Threads Overview
Resolved
Unresolved
1
Total Threads
1
Resolved
0
Unresolved
100%
Resolution Rate
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 2.0.4
- Last Updated
- Jan 02, 2026
- Requires WP
- 5.0+
- Tested Up To
- 6.9
- PHP Version
- 7.4 or higher
- Author
- Joel James
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.9
- Reviews
- 109
- Support Threads
- 1
- Resolved
- 100%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
WP Adminify – White Label WordPress, Admin Menu Editor, Login Customizer
7K+ installs
#2,736
Master Addons For Elementor - White Label, Free Widgets, Hover Effects, Conditions, & Animations
40K+ installs
#929
404 to 301 – Redirect, Log and Notify 404 Errors
100K+ installs
#336
Embed Plus for YouTube Gallery, Livestream and Lazy Loading with Facades
100K+ installs
#343
Auto Image Attributes From Filename With Bulk Updater (Add Alt Text, Image Title For Image SEO)
100K+ installs
#433
Frequently Asked Questions
Common questions about Loggedin - Limit Concurrent Sessions
You can find the plugin settings by navigating to Users > Loggedin in your WordPress admin dashboard.
Currently, the plugin offers three built-in login logic options: Logout Oldest: When a user reaches the login limit, their oldest active session will be automatically terminated to allow for the new login. Logout All: All other active sessions for the user will be logged out when a new session is started. Block New: The new login attempt will be blocked if the user has already reached the maximum number of active sessions. Additional logic options can be added using third-party plugins or custom code. For more details, see our documentation here.
The duration of a login session is determined by WordPress's default settings. If the "Remember Me" box is checked during login, the session will last for 14 days. If the "Remember Me" box is not checked, the session will last for 2 days. You can customize this duration using the auth_cookie_expiration filter. Here's an example of how to set the session to one month: function custom_auth_cookie_expiration( $expire ) { return MONTH_IN_SECONDS; // Sets the session to one month } add_filter( 'auth_cookie_expiration', 'custom_auth_cookie_expiration' );
Administrators can forcefully log a user out of all their active sessions from the dashboard. Find the user's WordPress ID. Go to Users > Loggedin in your WordPress admin panel. Navigate to the Manage Sessions section. Enter the user ID and click the Force Logout button to end all of their active sessions.
Yes, you can bypass the limit for certain users or roles by adding a few lines of code to your theme's functions.php file or a custom plugin. To bypass specific user IDs, use the following code: function loggedin_bypass_users( $bypass, $user_id ) { // Add the user IDs you want to bypass to this array. $allowed_users = array( 1, 2, 3, 4, 5 ); return in_array( $user_id, $allowed_users ); } add_filter( 'loggedin_bypass', 'loggedin_bypass_users', 10, 2 ); To bypass specific user roles, use this code: function loggedin_bypass_roles( $prevent, $user_id ) { // Add the roles you want to bypass to this array. $allowed_roles = array( 'administrator', 'editor' ); $user = get_user_by( 'id', $user_id ); $roles = ! empty( $user->roles ) ? $user->roles : array(); return ! empty( array_intersect( $roles, $allowed_roles ) ); } add_filter( 'loggedin_bypass', 'loggedin_bypass_roles', 10, 2 );