@cpagan2000
Not recently active
Forum Replies Created
Viewing 8 replies - 1 through 8 (of 8 total)
-
Here you go
<?php // hacks and mods will go here /** * Disables BuddyPress' registration process and fallsback to WordPress' one. */ 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-signup.php'; } ?>
This has worked for me
<?php // hacks and mods will go here /** * Disables BuddyPress' registration process and fallsback to WordPress' one. */ 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-signup.php'; } ?>
Well this worked lets hope no issues.
<?php // hacks and mods will go here /** * Disables BuddyPress' registration process and fallsback to WordPress' one. */ 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-signup.php'; } ?>
Well Thank You sir gees
It makes no sense do I have to create this file and then paste the code. Because there is no such file. Below is what it says on the link
Disable BuddyPress’ registration and use WP’s instead. Paste this in /wp-content/plugins/bp-custom.php
No they don’t have to create 2 accounts. What I want is for the god awful registration page to go away and get bacl my normal wordpress login and registration page back. I have social sign ins and want to be able to use those and also a captcha for spam.
I want to use the wp-login.php login and registration page instead of buddypress. How can I do that
That page does not help what so ever
Viewing 8 replies - 1 through 8 (of 8 total)