Welcome to the forum. If this is your first time you can browse around and see what you like. You will need to be registered in order to post!
Join our community and talk about tech, gaming, get support for computer problems and even sale your own product.
Considering supporting us by subscribing.
Join our community and talk about tech, gaming, get support for computer problems and even sale your own product.
Considering supporting us by subscribing.
Disable BuddyPress Registration Page and Force Wordpress Registration Page
Disable BuddyPress Registration Page and Force Wordpress Registration Page
If you are fed up with a custom registration page that BuddyPress creates, this is a simple fix.
There are several reasons why you may want to do this:
And paste this simple code:
Before:
After:
There are several reasons why you may want to do this:
- A custom themed login page that some plugin or even custom CSS creates.
- Use external registration page.
- Use captcha support from WordPress' default registration page.
And paste this simple code:
Code: Select all
<?php
// Code taken from http://chatngo.co/bb/viewtopic.php?f=10&t=277
function my_disable_bp_registration() {
remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );
remove_action( 'bp_screens', 'bp_core_screen_signup' );
}
add_action( 'bp_loaded', 'my_disable_bp_registration' );
add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page");
function firmasite_redirect_bp_signup_page($page ){
return bp_get_root_domain() . '/wp-login.php?action=register';
}
?>

PC: Custom Built Gaming PC
Monitor: Samsung S24D390H, Asus VE248H
Who is online
Users browsing this forum: No registered users and 1 guest
Topic Subscribers
1 user subscribed to this topic: kachan64