Private BuddyPress
Protect your BuddyPress Installation from strangers. Only registered users will be allowed to view the installation.
Next Milestone 90
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
Rank Changes
Downloads Growth
Upgrade to Pro
Unlock 30-day, 90-day, and yearly download history charts with a Pro subscription.
Upgrade NowReviews & Ratings
Tracked Keywords
Showing 3 of 3| Keyword | Position | Change | Type | Updated |
|---|---|---|---|---|
| buddypress | 28 | — | Tag | 17 hours ago |
| private | 56 | — | Tag | 17 hours ago |
| protect | 126 | — | Tag | 17 hours 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
Track This Plugin
Get detailed analytics, keyword tracking, and position alerts delivered to your inbox.
Start Tracking FreePlugin Details
- Version
- 1.0.4
- Last Updated
- Jan 23, 2011
- Requires WP
- 0+
- Tested Up To
- 10.0
- PHP Version
- N/A
- Author
- Dennis Morhardt
Support & Rating
- Rating
- ★ ★ ★ ★ ★ 5
- Reviews
- 2
- Support Threads
- 0
- Resolved
- 0%
Keywords
Upgrade to Pro
Unlock keyword rankings, search positions, and detailed analytics with a Pro subscription.
Upgrade NowSimilar Plugins
Frequently Asked Questions
Common questions about Private BuddyPress
// Redirect users to the homepage
// Caution! Exclude the homepage from 'Private BuddyPress' options
// to avoid redirection loops!
return get_option('siteurl') . '/?from=' . $redirect_to;
}
add_filter('pbp_redirect_login_page', 'redirect_nonloggedin_users', 10, 2);
global $bp;
if ( bp_is_directory() && $bp->current_component == $bp->blogs->slug )
return false;
return $visibility;
}
add_filter('pbp_login_required_check', 'make_blog_directory_visible');
pbp_admin_init: Fired when Private BuddyPress in the admin area is initialised
pbp_login_redirect: Fired when the users is not logged in and is being redirected to the login page or when it is a feed asked for a password
pbp_save_options: Fired when the options of Private BuddyPress has been changed
pbp_options_page: Fired on the options page to added more fields for custom options
Also in Private BuddyPress are existing 6 filters:
pbp_is_buddypress_feed: Boolean value if the current page is a BuddyPress feed
pbp_redirect_to_after_login: Called URI from where the users came from
pbp_redirect_login_page: URI where nonloggedin users are being redirected
pbp_login_required_check: Boolean value if for the current page a login is needed
pbp_pre_options: Object with the new options before they saved
pbp_protect_blog_feeds: Boolean value if blog feeds should be protected