Skip to:
Content
Pages
Categories
Search
Top
Bottom

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


Per Søderlind
Participant

@pers

This plugin will remove the login form:

<?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(); }
?>

Skip to toolbar