Skip to main content

Home/ buddypress/ Group items tagged private

Rss Feed Group items tagged

Vernon Fowler

gglnx/private-buddypress · GitHub - 0 views

  • Can I change the URL where non-loggedin users are being redirected? = Yes, currently you need to write a filter function in your functions.php. `function redirect_nonloggedin_users($current_uri, $redirect_to) { // 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);`
  •  
    Protect your BuddyPress Installation from strangers. Only registered users will be allowed to view the installation and all other users will be redirected to the login page. Users attempting to view blog content via RSS are also authenticated via HTTP Auth. You can exclude the registration, the homepage and blog pages (e.g. posts, archives and non-buddypress pages) from protection. In combination with the plugin 'Invitation Code Checker' your installation stays private but the registration is for users with a special password open.
Vernon Fowler

WordPress › Support » [Plugin: Private BuddyPress] Only exclude SOME pages (h... - 0 views

  • Simply modify the example code from the plugin FAQs in order to unblock a page by its ID number: // unblock a page by id function make_page_visible($visibility) { global $bp; if (is_page(26)) return false; return $visibility; } add_filter('pbp_login_required_check', 'make_page_visible');
    • Vernon Fowler
       
      This works by page ID as well as the array option including slug and Page Title - see highlight below.
  • is_page(array(42,'about-me','Contact'))
    • Vernon Fowler
       
      Works in combination with the above highlight in a theme's functions.php file.
  •  
    Only exclude SOME pages (how-to)
Vernon Fowler

BuddyPress.org → Docs → Version 1.5 - Features and fixes - 0 views

  • BP-Default is now a responsive theme
  • Looks great on mobile browsers
  • New forums tab on the member profile page navigation, giving you quick access to the topics you’ve started and replied to.
  • ...11 more annotations...
  • oEmbed support – It’s now super easy to embed videos, images, and other content into the Activity Stream, Forums, and Private Messages.
  • Fix group auto-join when posting in public groups’ forums
  • Add Forums tab to user account area to show topics the user has started, and topics that the user has replied to. This includes additional template files to support this new functionality.
  • Remove root components and replace them with actual WordPress Pages
  • Add bp_is_multiblog_mode
  • Add bp_use_wp_admin_bar()
  • Add oEmbed support
  • Add the topic’s tags to the edit topic screen
  • Add new widget areas; there are now five (one in the sidebar, four in the footer).
  • Add a new forums tab on the member profile page nav; gives you quick access to the topics you’ve started and replied to
  • Update the main header ‘s background to use a CSS3 gradient instead of an image.
1 - 4 of 4
Showing 20 items per page