-
Henry replied to the topic Use standard WordPress registration in the forum How-to & Troubleshooting 11 years ago
@starapple Did you try the function r-a-y wrote?
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' );
You’d need to remove all the code you’ve added first then try adding that to…[Read more]
-
Henry replied to the topic Use standard WordPress registration in the forum How-to & Troubleshooting 11 years ago
This webpage has a redirect loop
This is likely to result from two redirects in place. 1. wp-login.php is redirecting to the BuddyPress login page. 2. The BuddyPress login page is redirecting back to the wp-login.php page.
From this, I’m assuming you’re using the
firmasite_redirect_bp_signup_page
function? This would work well if…[Read more] -
bp-help replied to the topic Use standard WordPress registration in the forum How-to & Troubleshooting 11 years ago
@starapple
Create a bp-custom.php if you dont have one already. For more on that see:
https://codex.buddypress.org/plugindev/bp-custom-php/
Then copy both snippets from the below link into bp-custom.php :
https://gist.github.com/r-a-y/5578432 -
aces replied to the topic Use standard WordPress registration in the forum How-to & Troubleshooting 11 years ago
There are two different ways to disable buddypress registration on https://gist.github.com/r-a-y/5578432
@starapple
Active 11 months, 1 week ago