BuddyPress.org | Community/groups | How-To and Troubleshooting | Forum - 0 views
-
<?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(); } ?>