Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: How to remove Login sidebar from BP 1.2 Default Theme

<?php
/* Plugin Name: remove buddypress login form
* Description: remove buddypress login form
* Author: PerS
* Version: 1.0
* Author URI: http://soderlind.no/
* Plugin URI: http://soderlind.no/
*/

add_action(‘bp_before_sidebar_login_form’, ‘ps_before_sidebar_login_form’);
function ps_before_sidebar_login_form() { ob_start(); }

add_action(‘bp_after_sidebar_login_form’, ‘ps_after_sidebar_login_form’);
function ps_after_sidebar_login_form() { ob_end_clean(); }
?>

I’m unable to find a plugin by this name, anything new here, that login on the right sidebar takes up way too much real estate and the nav bar has login in it already.

Skip to toolbar