Created
December 23, 2023 14:24
-
-
Save imath/c5c34feb5d3c9b3070f7a11bc339f103 to your computer and use it in GitHub Desktop.
Revisions
-
imath created this gist
Dec 23, 2023 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ <?php function disable_bp_signups() { add_filter( 'bp_get_signup_allowed', '__return_false' ); remove_filter( 'register_url', 'bp_get_signup_page' ); remove_action( 'bp_init', 'bp_core_wpsignup_redirect' ); remove_filter( 'wp_signup_location', 'bp_blogs_creation_location' ); remove_filter( 'wpmu_signup_user_notification', 'bp_core_activation_signup_user_notification', 1 ); } add_action( 'bp_include', 'disable_bp_signups' );