Skip to content

Instantly share code, notes, and snippets.

@ControlledChaos
Forked from r-a-y/gist:5578432
Last active August 8, 2016 20:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ControlledChaos/336efa33d00afdf73cba to your computer and use it in GitHub Desktop.
Save ControlledChaos/336efa33d00afdf73cba to your computer and use it in GitHub Desktop.
Disables the BuddyPress registration process and fall back to the WordPress form.

Replace BuddyPress Registration

WordPress Snippet

<?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' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment