by Kevin Vess
4.8 (101 reviews)
Force Login
Force Login is a simple lightweight plugin that requires visitors to log in to interact with the website.
Tested up to WP 6.7.5 (Current: 6.9.4)
v5.6.3
Current Version v5.6.3
Updated 1 year ago
Last Update on 07 Feb, 2025
Refreshed 6 hours ago
Last Refreshed on
Rank
#1,015
—
No change
Active Installs
30K+
—
No change
KW Avg Position
124
-1 better
Downloads
9M
+5,414 today
Support Resolved
0%
—
No change
Rating
96%
Review 4.8 out of 5
4.8
(101 reviews)
Next Milestone 40K
30K+
40K+
82
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 4,409 more installs to reach 40K+
Rank Changes
Current
#1,015
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.8
101 reviews
Overall
96%
5
95
(94%)
4
0
(0%)
3
0
(0%)
2
3
(3%)
1
3
(3%)
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| registered only | 91 | — | Tag | 1 day ago |
| restricted | 104 | — | Tag | 1 day ago |
| protected | 177 | — | Tag | 1 day ago |
Unlock 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
0
Resolved
1
Unresolved
0%
Resolution Rate
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 5.6.3
- Last Updated
- Feb 07, 2025
- Requires WP
- 4.6+
- Tested Up To
- 6.7.5
- PHP Version
- N/A
- Author
- Kevin Vess
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 4.8
- Reviews
- 101
- Support Threads
- 1
- Resolved
- 0%
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,714
Master Addons For Elementor – Widgets, Extensions, Theme Builder, Popup Builder & Template Kits
30K+ installs
#953
InfiniteWP Client
200K+ installs
#253
Nextend Social Login and Register
200K+ installs
#256
Anti-Malware Security and Brute-Force Firewall
100K+ installs
#298
Frequently Asked Questions
Common questions about Force Login
By default, the plugin sends visitors back to the URL they tried to access. However, you can redirect users to a specific URL by adding the built-in WordPress filter login_redirect to your functions.php file.
You can bypass Force Login based on any condition by adding the following filter to your functions.php file. You may use the WordPress Conditional Tags in your code. /** * Bypass Force Login to allow for exceptions. * * @param bool $bypass Whether to disable Force Login. Default false. * @param string $visited_url The visited URL. * @return bool */ function my_forcelogin_bypass( $bypass, $visited_url ) { // Allow 'My Page' to be publicly accessible if ( is_page('my-page') ) { $bypass = true; } return $bypass; } add_filter( 'v_forcelogin_bypass', 'my_forcelogin_bypass', 10, 2 ); Check out the Force Login Wiki on GitHub for additional examples to allow URLs to be publicly accessible.
The WordPress login screen includes a "← Back to {sitename}" link below the login form; which may not actually take you back to the site while Force Login is activated. You can hide this link by adding the following action to your functions.php file. Requires: WordPress 2.5 or higher // Hide the 'Back to {sitename}' link on the login screen. function my_forcelogin_hide_backtoblog() { echo '<style type="text/css">#backtoblog{display:none;}</style>'; } add_action( 'login_enqueue_scripts', 'my_forcelogin_hide_backtoblog' );