Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Replace WP profile edit with BP profile edit


John James Jacoby
Keymaster

@johnjamesjacoby

You could make a custom login page with BP trunk like…

define('BP_LOGIN_SLUG', 'login');
function bp_show_login_page() {
global $bp, $current_blog;

if ( $bp->current_component == BP_LOGIN_SLUG && $bp->current_action == '' ) {
bp_core_load_template( 'registration/login', true );
}
}
add_action( 'wp', 'bp_show_login_page', 2 );

Then put a template file named “login.php” in your frameworks registration folder and steal some code from the buddypress login form to help with getting started…

There’s a few examples online on how to redirect the WordPress login page with .htaccess. Could give that a shot too?

Skip to toolbar