ControlledChaos
11/12/2014 - 10:18 PM

Disables the BuddyPress registration process and fall back to the WordPress form.

Disables the BuddyPress registration process and fall back to the WordPress form.

<?php

function ccd_disable_bp_registration() {
  remove_action( 'bp_init',    'bp_core_wpsignup_redirect' );
  remove_action( 'bp_screens', 'bp_core_screen_signup' );
}
add_action( 'bp_loaded', 'ccd_disable_bp_registration' );

?>

Replace BuddyPress Registration

WordPress Snippet