Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Paste this into a ‘styles.css’ file in ‘themes/child-theme/’. It works. I tested it. I had not tested any of the solutions above. Just wrote them off the top of my head. I had missed the hash mark for starters on the sidebar-login-form declaration. The ‘echo’ statement was correct though. <<<Blah … Blah; is a valid php syntax. Altho’ I’ve never used it.

/*
Theme Name: Child Theme
Template: bp-default
Tags: buddypress
*/

/* Parent styles */
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css );
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );

/* Custom styles */
#sidebar-login-form,
#login-text{display: none;}

Skip to toolbar