Forums
-
- Forum
- Posts
-
- Installing BuddyPress
- 23,830
- How-to & Troubleshooting
- 129,810
- Creating & Extending
- 25,867
- Requests & Feedback
- 9,509
- Third Party Plugins
- 9,821
- Showcase
- 3,317
- Ideas
- 1,383
- Miscellaneous
- 9,177
-
Here we go – easier than I thought it would be to fix this.
Go to bp-core/bp-core-signup.php and find the following line:
$account_details = bp_core_validate_user_signup( $_POST['signup_username'], $_POST['signup_email'] );
Add this line directly below it:
$account_details=strtolower($account_details);
It just transforms usernames typed in multiple cases in the username field to only lowercase letters.